在虚拟环境和pip要求中手动安装包知道

时间:2016-02-25 22:41:46

标签: python django pip

我正在尝试在virtual-env

中安装软件包
pip install -r requirements.txt 

但是,我必须从源代码

下载并安装2个软件包
antlr4-python2-runtime 4.5.2.1

tar xvfz antlr4-python2-runtime-4.5.2.1.tar.gz 

cd antlr4-python2-runtime-4.5.2.1

python setup.py install

但现在它向我显示了这个错误:

Could not find any downloads that satisfy the requirement antlr-python-runtime>=3.1.3 (from Intellect==1.4.9->-r requirements.txt (line 3))

1 个答案:

答案 0 :(得分:1)

我不确定发生了什么(鉴于提供的信息不够),但是从PyPI中搜索,它看起来是2个不同的包:

版本4 antlr4-python2-runtime

第3版antlr_python_runtime

所以,似乎你安装了错误的软件包。

注意:同时确保您在激活virtualenv的情况下运行python setup.py install