python3.5安装加密模块pycrypto

来源:互联网 发布:南昌淘宝摄影工作室 编辑:程序博客网 时间:2024/06/07 11:35

在windows10下的python虚拟环境中用pip install -r requirements.txt安装项目所需依赖包,然而pycrypto包总是失败!导致后续的包也安装不成功。网上编译好的exe还没有python3.5的!直到网上一大神的一条命令拯救了我!

pip install --use-wheel --no-index --find-links=https://github.com/sfbahr/PyCrypto-Wheels/raw/master/pycrypto-2.6.1-cp35-none-win_amd64.whl pycrypto

0 0