在使用pip install安装第三方库的时候,可能会报下面的错误:
ERROR: Could not find a version that satisfies the requirement pyinstaller (from versions: none)
ERROR: No matching distribution found for pyinstaller
此时可能是由于国内网络不能顺利完成第三方库的下载,此时需要使用国内镜像安装:
pip3 install xxx -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
另外,还可以选择其它镜像源:
http://mirrors.aliyun.com/pypi/simple/
https://pypi.mirrors.ustc.edu.cn/simple/
http://pypi.douban.com/simple/
https://pypi.tuna.tsinghua.edu.cn/simple/
http://pypi.mirrors.ustc.edu.cn/simple/