使用pip install安装依赖
pip install -r requirements.txt
由于pip -r
https://www.itranslater.com/qa/details/2582452475743699968
pip会先尝试构建所有软件包,然后再尝试安装它们。 因此,使用如下所示的需求文件numpy==1.7.1
scipy==0.13.2
statsmodels==0.5.0
statsmodels的构建将因以下语句而失败ImportError: statsmodels requires numpy
手动调用需求文件(通过Shell脚本)中每个条目的pip所提供的解决方法似乎是当前的唯一解决方案。
手动调用需求文件,逐条安装
cat requirements.txt | xargs -n 1 pip install
国内代理配置
#shell
pip config set global.index-url=https://mirrors.aliyun.com/pypi/simple/
#编辑 ~/.config/pip/pip.conf
[global]
timeout = 6000
index-url = https://mirrors.aliyun.com/pypi/simple/
trusted-host = mirrors.aliyun.com