我一直在尝试使用pip install来安装旧版本(2.0bp)的NLTK,以便使用一些旧脚本进行自然语言解析。
我只是像往常一样尝试使用下面的命令。
pip install nltk==2.0b9
失败并出现错误。
Collecting nltk==2.0b9
Using cached nltk-2.0b9.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
IOError: [Errno 2] No such file or directory: '/tmp/pip-build-uEdW6G/nltk/setup.py'
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-uEdW6G/nltk/
正如StackOverflow上的其他帖子所示,我尝试了命令,但安装仍然失败。
pip install --upgrade setup tools
我在pyenv上使用过Python2.7,pip本身在9.0.1上。 你可以给我任何建议吗?