我一直在使用pip install来处理所有内容并且它工作正常,但我尝试下载的最后一个模块没有完成,我无法弄清楚原因。任何帮助将不胜感激。
Downloading/unpacking fut
Downloading fut-0.0.20.tar.gz
Running setup.py (path:/private/tmp/pip_build_root/fut/setup.py) egg_info for package fut
Traceback (most recent call last):
File "<string>", line 17, in <module>
File "/private/tmp/pip_build_root/fut/setup.py", line 25, in <module>
with open('CHANGELOG.rst') as f2:
IOError: [Errno 2] No such file or directory: 'CHANGELOG.rst'
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 17, in <module>
File "/private/tmp/pip_build_root/fut/setup.py", line 25, in <module>
with open('CHANGELOG.rst') as f2:
IOError: [Errno 2] No such file or directory: 'CHANGELOG.rst'
答案 0 :(得分:0)
几天前我使用pip时遇到了同样的错误。
IOError:[Errno 2]没有这样的文件或目录:'CHANGELOG.rst'
我只是简单地创建了一个空文件'CHANGELOG.rst',并且pip安装正常进行。不要认为这是一个合法的解决方案,但可能是一个“解决方案”。