pip安装包报错 Could not find a version that satisfies the requirement pycipher (from versions: none)
这时可能需要我们升级一下pip版本,于是执行命令。这时考虑是网速的原因,这时采用国内的镜像源来加速。这是为了获得ssl证书的认证。这时考虑换一个pip源。
·
ERROR: Could not find a version that satisfies the requirement pycipher (from versions: none)
ERROR: No matching distribution found for pycipher
第一种可能:
这时可能需要我们升级一下pip版本,于是执行命令
python -m pip install --upgrade pip
第二种可能:
这时考虑换一个pip源
pip install pymysql -i https://pypi.tuna.tsinghua.edu.cn/simple/
第三种可能:
这时考虑是网速的原因,这时采用国内的镜像源来加速
pip install 包名-i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
--trusted-host http://pypi.douban.com 这是为了获得ssl证书的认证
第三种成功安装
更多推荐
已为社区贡献1条内容
所有评论(0)