python 当pip安装需求文件失败时,就会发生愚蠢的事情

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 当pip安装需求文件失败时,就会发生愚蠢的事情相关的知识,希望对你有一定的参考价值。

# collects and installs each requirement fully one at a time.
# rather than collecting all packages then installing.

import pip
from subprocess import call

with open("requirements.txt", "r") as req:
    for package in req:
    call("pip install " + package, shell=True)

以上是关于python 当pip安装需求文件失败时,就会发生愚蠢的事情的主要内容,如果未能解决你的问题,请参考以下文章

利用pip freeze 导出来python安装的库,但是生成的txt文件是空的怎么回事?

python使用pip安装第三方库(工具包)速度慢超时失败的解决方案

Python pip 安装失败:无效命令 egg_info

通过 pip 安装 pysftp 失败(因为有 2 个 python2.x 版本?)

如果需求没有上传二进制文件,如何安装Python依赖关系?

mac安装pip失败的解决办法