出于特定原因,我需要在 python 2.7 版本中安裝 nltk 2.09b。但是每當(dāng)我執(zhí)行以下命令時,pip2 install nltk==2.0b9我收到以下錯誤:Collecting nltk==2.0b9 Using cached https://files.pythonhosted.org/packages/ea/b3/4c5157bf034437905fbbd3c80e58c8b4a22cf3400db0bdf19dae3079a732/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: '/private/var/folders/3b/yskb8jks10lf_pqvv1sy7v740000gn/T/pip-install-63jdDZ/nltk/setup.py' ----------------------------------------Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/3b/yskb8jks10lf_pqvv1sy7v740000gn/T/pip-install-63jdDZ/nltk/但是,如果我在沒有任何版本規(guī)范的情況下運行,則不會出現(xiàn)錯誤。像下面這樣:pip2 install nltk;我該如何解決這個問題?
2 回答

江戶川亂折騰
TA貢獻(xiàn)1851條經(jīng)驗 獲得超5個贊
第一件事:使用 anaconda,您可能有足夠的最新 pip 和 setuptools,并且應(yīng)該使用 conda 本身來更新它們。對于 anaconda,conda install 是安裝 anaconda 提供的軟件包的主要資源。然后,“2.0b9”是測試版(如“b9”所示)并且可能會遇到安裝配置問題。setup.py 文件不在下載的存檔文件的根目錄下,我想這會造成問題。
添加回答
舉報
0/150
提交
取消