python - pip安装django-xadmin时出现了字符编码问题
ringa_lee
ringa_lee 2017-04-18 09:15:01
0
2
865

我想用pip安装一个django的xadmin组件。

django-xadmin的一些资料:docs github 官网

控制台里的报错:

C:\Windows\system32>pip install xadmin
Collecting xadmin
  Downloading xadmin-0.6.1.tar.gz (1.0MB)
    100% |████████████████████████████████| 1.0MB 329kB/s
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\Hao\AppData\Local\Temp\pip-build-m7x6g0ti\xadmin\setup.py", line 11, in <module>
        long_description=open('README.rst').read(),
    UnicodeDecodeError: 'gbk' codec can't decode byte 0xa4 in position 3444: illegal multibyte sequence

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\Hao\AppData\Local\Temp\pip-build-m7x6g0ti\xadmin\

我的环境是:
Python 3.5.2
windows10
django 1.9

看这句报错的意思UnicodeDecodeError: 'gbk' codec can't decode byte 0xa4 in position 3444: illegal multibyte sequence,似乎是字符编码出了问题。。?

请问该如何解决啊

ringa_lee
ringa_lee

ringa_lee

reply all(2)
洪涛

File encoding problem, the value in the README.rst file has no effect. You can try to change the encoding of the README.rst file, or actually clear the contents

巴扎黑

README.rst Change the encoding of this file to GBK and save it, then install it with PYthon setup.pu install

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!