码迷,mamicode.com
首页 > Web开发 > 详细

pip install 安装出现问题:UnicodeEncodeError: 'ascii' codec can't encode characters in position XX的解决办法

时间:2017-02-26 17:35:24      阅读:601      评论:0      收藏:0      [点我收藏+]

标签:question   title   man   安装   digg   button   string   mod   sum   

 

pip install 安装出现问题:UnicodeEncodeError: ‘ascii‘ codec can‘t encode characters in position XX的解决办法

转自csdn

我在cmd中运行: pip install wheel时出现如下的问题 : 
技术分享

解决办法如下: 
**在Python目录 Python27\Lib\site-packages 建一个文件sitecustomize.py 
里面的内容是:**

import sys 
    sys.setdefaultencoding(‘gb2312‘) 
  • 1
  • 2
  • 1
  • 2

然后重新执行命令:pip install wheel

但是有可能你还会出现这样的问题: 
技术分享 
那么将sitecustomize.py 的内容改成如下所示:

import sys 
sys.setdefaultencoding(‘UTF-8‘) 
  • 1
  • 2
  • 1
  • 2

然后再次执行命令:pip install wheel

技术分享 
成功了!

附上参考链接: 
http://stackoverflow.com/questions/10561923/unicodedecodeerror-ascii-codec-cant-decode-byte-0xef-in-position-1 
https://www.v2ex.com/t/90659 
http://www.crifan.com/summary_python_unicodedecode_error_possible_reasons_and_solutions/

 
0

pip install 安装出现问题:UnicodeEncodeError: 'ascii' codec can't encode characters in position XX的解决办法

标签:question   title   man   安装   digg   button   string   mod   sum   

原文地址:http://www.cnblogs.com/xll1025/p/6444926.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!