2015-05-17 30 views
1

我使用Arch Linux与Python 3默认。下载Django的工具区与命令pip install django-toolbelt 名称:PIP 版本:6.1.1Pip install django-toolbelt得到一个错误:“codecs.ascii_decode(input,self.errors)[0] UnicodeDecodeError:'ascii'编解码器无法解码字节0xc2

我得到一个错误

Collecting django-toolbelt 
    Using cached django-toolbelt-0.0.1.tar.gz 
Requirement already satisfied (use --upgrade to upgrade): django in ./venv/lib/python3.4/site-packages (from django-toolbelt) 
Requirement already satisfied (use --upgrade to upgrade): psycopg2 in ./venv/lib/python3.4/site-packages (from django-toolbelt) 
Collecting gunicorn (from django-toolbelt) 
    Using cached gunicorn-19.3.0-py2.py3-none-any.whl 
Collecting dj-database-url (from django-toolbelt) 
    Using cached dj_database_url-0.3.0-py2.py3-none-any.whl 
Collecting dj-static (from django-toolbelt) 
    Using cached dj-static-0.0.6.tar.gz 
Collecting static3 (from dj-static->django-toolbelt) 
    Using cached static3-0.6.0.tar.gz 
    Complete output from command python setup.py egg_info: 
    Traceback (most recent call last): 
     File "<string>", line 20, in <module> 
     File "/tmp/pip-build-w5v7urb2/static3/setup.py", line 52, in <module> 
     long_description=open('README.rst').read(), 
     File "/home/phi/python/venv/lib/python3.4/encodings/ascii.py", line 26, in decode 
     return codecs.ascii_decode(input, self.errors)[0] 
    UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 2097: ordinal not in range(128) 

    ---------------------------------------- 
    Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-w5v7urb2/static3 

我该如何解决

+0

发布完整追溯。也张贴确切版本的点子。 – Alik

+0

look heer http://stackoverflow.com/questions/21129020/how-to-fix-unicodedecodeerror-ascii-codec-cant-decode-byte –

+0

@Alik再次为我检查。谢谢你和@埃布雷我试过,但没有工作 – user3863069

回答

3

运行

LC_ALL=en_US.utf8 pip install django-toolbelt 

有在pip一个问题。如果您使用非Unicode字段设置(如C)并尝试安装包含pipUnicodeDecodeErrors的程序包,则setup.py可能会尝试读取包含非ASCII字符的文件。

在这种情况下,它是在this change引入的急性口音。

我打算在Github上报告这个问题。

+0

好的,谢谢你的帮助。 :) – user3863069

相关问题