pip install 報錯UnicodeDecodeError: 'ascii' codec can't decode byte

右介發表於2017-05-09

2017-03-23

報錯原因:

pip安裝Python包會載入我的使用者目錄,我的使用者目錄恰好是中文的,ascii不能編碼。

 

解決辦法: 
python目錄 Python27\Lib\site-packages 建一個檔案sitecustomize.py 
內容寫: 

import sys 
sys.setdefaultencoding('gbk') 

 

python會自動執行這個檔案。

相關文章