我正在尝试在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))
答案 0 :(得分:1)
我不确定发生了什么(鉴于提供的信息不够),但是从PyPI中搜索,它看起来是2个不同的包:
和
所以,似乎你安装了错误的软件包。
注意:同时确保您在激活virtualenv的情况下运行python setup.py install
。