python anaconda安装包错误之FileNotFoundError: [Errno 2] No such file or directory: ...dist-info\\METADATA

比如在执行如下命令时

pip install h5py

出现错误:

FileNotFoundError: [Errno 2] No such file or directory: 'c:\\programfiles\\anaconda3\\envs\\py37\\lib\\site-packages\\h5py-2.10.0.dist-info\\METADATA'

出现这种情况的原因很可能是因为环境移植(env clone)时出现的异常情况。

解决方法:

1. 打开路径:此路径与异常提示中路径是一样的

c:\\programfiles\\anaconda3\\envs\\py37\\lib\\site-packages

2. 然后将如图中两个文件夹删掉即可。

3. 然后执行

pip install h5py就没有问题了

4. 其他包的安装时候,遇到此问题,依照执行。 

你可能感兴趣的:(anaconda,python)