pip中的“无法在安装记录中找到.egg-info目录”是什么意思?

时间:2014-09-29 02:12:02

标签: python pip setuptools

自更新最新的setuptools(6.0.1)后,我收到警告(黄色)

Could not find .egg-info directory in install record for ...

我已更新的所有套餐。例如,当更新Twisted I get

Could not find .egg-info directory in install record for Twisted from https://pypi.python.org/packages/source/T/Twisted/Twisted-14.0.2.tar.bz2#md5=.... in /Library/Python/2.7/site-packages

然而,包更新似乎成功了。

这个警告意味着什么?我该怎么做才能回应呢?

2 个答案:

答案 0 :(得分:16)

对我来说升级setuptools没有用,有什么工作正在更新pip:

pip install --upgrade setuptools pip

(我也包括setuptools来处理这两个问题)

答案 1 :(得分:5)

setuptools 6.0.2中似乎a bug introduced in 6.0.1fixed

相关问题