环境:django 2.02 python3.7.4
安装xadmin时发生如下报错
ERROR: Command errored out with exit status 1:
command: 'C:\Users\xxx\Envs\DjangoProject\Scripts\python.exe' -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\xxx\\AppData\\Local\\Temp\\pip-install-4vc_xe25\\xadmin\\setup.py'"'"'; __file__='"'"'C:\\Users\\xxx\\AppData\\Local\\Temp\\pip-install-4vc_xe25\\xadmin\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\xxx\AppData\Local\Temp\pip-install-4vc_xe25\xadmin\pip-egg-info'
cwd: C:\Users\xxx\AppData\Local\Temp\pip-install-4vc_xe25\xadmin\
Complete output (5 lines):
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\Users\xxx\AppData\Local\Temp\pip-install-4vc_xe25\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
----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
以上报错的原因是 README.rst 这个文件 出现了 Unicode 解码错误,这个文件时没有什么用处的,可以新建一个同名的空白文件替换掉
我们可以采用手动安装本地包 的方法安装
下载 xadmin zip 安装包
https://github.com/sshwsfc/xadmin/tree/django2
然后手动替换zip安装包内的 README.rst 这个文件
之后手动安装
pip install 下载的zip安装包路径
之后就安装完成了