码迷,mamicode.com
首页 >  
搜索关键字:python报错    ( 111个结果
Python报错UnicodeDecodeError: ascii codec can t decode byte 0xe0 ...解决方法
用命令(python setup.py install)安装webpy时候总是报错 在网上搜索到的解决方法如下: 1. 这是Python 2 mimetypes的bug 2. 需要将Python2.7/lib/mimetypes.py文件中如下片段注释或删除: try: ctype = ctype. ...
分类:编程语言   时间:2016-12-25 02:09:54    阅读次数:215
MySQL缺失mysql_config文件
打算爬虫,安装mysqldb 结果使用pip安装出错 在centos-6.4上pip install mysql-python,报错如下[sentry@kjtest111 mysql-python]$ pip install mysql-python Downloading/unpacking my ...
分类:数据库   时间:2016-12-01 14:12:16    阅读次数:530
Python报错:SyntaxError: Non-ASCII character '\xe5' in file的解决方法
SyntaxError: Non-ASCII character '\xe5' in file 原因:Python默认是以ASCII作为编码方式的,如果在自己的Python源码中包含了中文(或者其他的语言,比如小日本的日语……),此时即使你把自己编写的Python源文件以UTF-8格式保存了;但实际 ...
分类:编程语言   时间:2016-08-28 22:33:43    阅读次数:225
mac安装sudo pip install MySQL-python报错EnvironmentError: mysql_config not found解决方法
参考文档:http://www.cnblogs.com/ifantastic/archive/2013/04/13/3017677.html ...
分类:数据库   时间:2016-08-19 06:12:29    阅读次数:224
[已解决]EnvironmentError: mysql_config not found
$ pip install MySQL-python==1.2.5 报错: EnvironmentError: mysql_config not found 原因是缺少包 libmysqlclient-dev ...
分类:数据库   时间:2016-07-01 19:55:34    阅读次数:234
TypeError: 'str' object is not callable
Python报错TypeError: 'str' object is not callable ...
分类:其他好文   时间:2016-05-26 09:51:34    阅读次数:259
python 安装 mysql-python遇到的问题
先通过 pip install mysql-python 报错 后来下载安装,报错: File "setup.py", line 15, in <module> metadata, options = get_config() File "F:\devtools\MySQL-python-1.2.3 ...
分类:数据库   时间:2016-05-06 10:41:24    阅读次数:204
关于Python报错:SyntaxError: Non-ASCII character '\xe5' in file的解决方法
Python默认编码错误SyntaxError: Non-ASCII character '\xe5'之解决方法在编写Python时,当使用中文输出或注释时运行脚本,会提示错误信息:SyntaxError: Non-ASCII character '\xe5' in file ******* 解决方 ...
分类:编程语言   时间:2016-05-01 20:25:10    阅读次数:2214
[每日一记] Python报错 IndentationError: unexpected indent
IndentationError: unexpected indent 代码缩进出现错误 今天这个报错的原因是,早些时候的代码里Tab和空格混起来用了,,,【不是我。。。是编辑器的锅 不过我已经把Sublime Text 2的Tab键配置为4个空格了(详见上一篇随笔),以后应该不会出现类似错误。
分类:编程语言   时间:2016-03-22 16:12:08    阅读次数:383
Python 报错 IndentationError: unindent does not match any outer indentation level
众所周知,Python语法要求在一份运行代码中的所有for,if/else的语句':'的下一行要统一缩进量(有’一个制表符(TAB键)‘,’两个空格‘,和’三个空格‘可以选择),如果缩进量不统一(比如TAB键和四个空格混用),则程序便会报错IndentationError: unindent doe...
分类:编程语言   时间:2015-10-30 00:43:38    阅读次数:651
111条   上一页 1 ... 7 8 9 10 11 12 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!