linux(centos、ubuntu)安装python模块cryptography报错问题
cryptography模块安装报错问题操作系统:centos7python版本:3.6.9具体报错:Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-dmytoxo_/cryptography/解决方案:执行以下命令升级pip:pip3 install --upgrade pip然后再执行安
·
cryptography模块安装报错问题
- 操作系统:centos7、ubuntu1~18.04
- python版本:3.6.9
- 具体报错:
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-dmytoxo_/cryptography/
解决方案:
执行以下命令升级pip:
python3 -m pip install --upgrade pip
虚拟环境下操作,注意不要使用这个命令pip3 install --upgrade pip
升级pip,我使用此命令升级后虚拟环境出问题了…
然后再执行安装命令:
pip3 install cryptography -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
参考链接:
https://www.cnblogs.com/xiao987334176/p/12600835.html
更多推荐
已为社区贡献2条内容
所有评论(0)