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安装需求文件失败时,就会发生愚蠢的事情的主要内容,如果未能解决你的问题,请参考以下文章