(1)运行后报错:“TypeError: cannot use a string pattern on a bytes-like” 原因:content用decode(‘utf-8’)进行解码,由bytes变成string.py3的urlopen返回的不是string是bytes. 解决方案:把’content’类型调整一下:content.decode(‘utf-8’) (2)运行后报错:“sqlite3.InterfaceError: Error binding parameter 1 -…
VS2012中丢失ArcGIS模板的解决方法 由于ArcGIS10.0(for .NET)默认是用VS2010作为开发工具的,所以在先安装VS2012后装ArcGIS10.0 桌面版及ArcObjects SDK for the Microsoft.NET Framework后,在VS2012中新建项目或添加窗口(类等)是没有ArcGIS模板.解决方法如下: 1.安装ArcGIS10.0会自动生成C:\Program Files\Microsoft Visual Studio 10.0文件夹,将…
参考: fatal error: Python.h: No such file or directory Ubuntu下 fatal error: Python.h: No such file or directory 解决方法 根据使用的Python版本安装python-dev库. sudo apt-get install python-dev # for python2.x installs sudo apt-get install python3-dev # for python3.x i…