Python 安装编码报错 - UnicodeDecodeError 博客分类: Python pythonsysasciiUnicodeDecodeError
程序员文章站
2024-03-11 14:54:55
...
【基本介绍】
Python的编码问题,永无止境。
【错误介绍】
系统默认的编码是ascii
在报错的文件中临时添加utf8 或者 gb18030
【参考】
http://blog.csdn.net/meylovezn/article/details/18080515
http://*.com/questions/21129020/how-to-fix-unicodedecodeerror-ascii-codec-cant-decode-byte
Python的编码问题,永无止境。
【错误介绍】
系统默认的编码是ascii
[root@vpn ~]# python Python 2.6.8 (unknown, Nov 7 2012, 14:47:45) [GCC 4.1.2 20080704 (Red Hat 4.1.2-52)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import sys >>> print sys.getdefaultencoding() ascii >>>
在报错的文件中临时添加utf8 或者 gb18030
import sys reload(sys) sys.setdefaultencoding('utf8')
【参考】
http://blog.csdn.net/meylovezn/article/details/18080515
http://*.com/questions/21129020/how-to-fix-unicodedecodeerror-ascii-codec-cant-decode-byte
推荐阅读
-
Python 安装编码报错 - UnicodeDecodeError 博客分类: Python pythonsysasciiUnicodeDecodeError
-
pygraphviz 在windows 7/ python 2.7 下编译安装 博客分类: Python配置 pythonwindowsgccbashpygraphviz
-
Python 安装 博客分类: Python pythonlinux
-
Python 安装 博客分类: Python pythonlinux
-
ImportError: No module named flask 但pip list 已经安装了 centeros 博客分类: Python
-
CenterOS 安装Python3.7 环境 博客分类: Python
-
CenterOS 安装Python3.7 环境 博客分类: Python
-
ImportError: No module named flask 但pip list 已经安装了 centeros 博客分类: Python
-
cqlsh执行报错"No appropriate python interpreter found." 博客分类: DataMining
-
python之PyQt5安装timeout解决 博客分类: python