1UnicodeEncodeError:‘ascii‘codeccan‘tencodecharactersinposition0-3:ordinalnotinrange(128)今天在部署代码的时候,报了一个异常,经过百度后得知是字符集问题,处理办法如下:在文件前加两句话:reload(sys)
sys.setdefaultencoding("utf-8")
分类:
编程语言 时间:
2015-10-26 13:53:26
阅读次数:
138
直接将app.debug = True时,程序出错并没有出现调试界面。按照如下设置,flask+uwsgi情况下,python报错时会在浏览器中提示错误信息。方便调试。from werkzeug.debug import DebuggedApplicationapp.wsgi_app = Debug...
分类:
其他好文 时间:
2015-09-12 16:06:11
阅读次数:
169
运行Python脚本总是报一下的错误:SyntaxError: Non-ASCII character '\xe5' in file原因:Python默认是以ASCII作为编码方式的,如果在自己的Python源码中包含了中文(或者其他的语言,比如小日本的日语……),此时即使你把自己编写的Python...
分类:
编程语言 时间:
2015-08-26 19:29:17
阅读次数:
173
supervisor的错误日志如下:Traceback(mostrecentcalllast):File"/home/himalayas/owengine/owprice/server.py",line10,in<module>importactionFile"/home/himalayas/owengine/owprice/action/__init__.py",line2,in<module>fromowpriceimportowPriceHandlerFile"/..
分类:
编程语言 时间:
2015-08-26 00:12:17
阅读次数:
217
python编码问题:'ascii' codec can't decode byte 0xb0 in position 1: ordinal not in range(128)这种问题有三种原因:第一个是文件的编码采用的是ANSI格式编码,这时候改变编码方式为以UTF-8无BOM格式编码(使用not...
分类:
编程语言 时间:
2015-07-11 13:23:40
阅读次数:
199
_mysql.c:在函数‘DL_EXPORT’中:_mysql.c:3058:错误:expecteddeclarationspecifiersbefore‘init_mysql’_mysql.c:3166:错误:expected‘{’atendofinputerror:command‘gcc‘failedwithexitstatus1----------------------------------------Command"/usr/bin/python-c"imports..
分类:
数据库 时间:
2015-07-09 23:00:40
阅读次数:
1562
最近要使用django进行项目开发,需要使用mysql-python模块。在本地搭建环境安装的时候却出现报错,Unable to find vcvarsall.bat在网上找了很多资料,发现是window平台本身不带编译系统,而安装mysql-python需要进行编译。网上给出的办法是,安装vs20...
分类:
数据库 时间:
2015-06-24 20:51:15
阅读次数:
247
1、在安装psutil跨平台库的过程中报错error:command‘gcc‘failedwithexitstatus1easy_install也提示一样的错误:error:Setupscriptexitedwitherror:command‘gcc‘failedwithexitstatus1一般是缺少python-dev包apt-getinstallpython-dev或yuminstallpython-devel这样就行了
分类:
编程语言 时间:
2015-06-23 23:21:24
阅读次数:
147
在安装Python的psutil模块时,报“error:command‘x86_64-linux-gnu-gcc‘failedwithexitstatus1”的错误,系统提示缺少Python的头文件,那就是说系统没有安装python的开发包,安装之就行了。$sudopipinstallpsutil
[sudo]passwordforrichard:
Downloading/unpackingpsutil
Downl..
分类:
编程语言 时间:
2015-05-19 07:33:13
阅读次数:
532