gpt4 book ai didi

python - 按照requirements.txt中的顺序pip安装

转载 作者:行者123 更新时间:2023-11-30 23:19:30 29 4
gpt4 key购买 nike

我想安装statemodel,所以我正在运行

sudo pip install --upgrade -r /srv/requirements.txt

包含requirements.txt

cat requirements.txt
numpy==1.9.0
scipy==0.14.0
patsy==0.3.0
pandas==0.13.0
statsmodels==0.5.0

但看起来 pip 没有按顺序安装requirements.txt中列出的软件包因为我收到类似“statsmodels required scipy”之类的依赖错误

有没有办法让 pip 按照在requirements.txt 中列出的顺序安装软件包?

最佳答案

您可以使用pip模块进行安装

import pip
with open("requirements.txt") as f:
for line in f:
# call pip's main function with each requirement
pip.main(['install','-U', line])

关于python - 按照requirements.txt中的顺序pip安装,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26046122/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com