无法在 pip 上安装任何东西

无法在 pip 上安装任何东西

每次我尝试在 pip 上安装任何东西时,它都会显示以下错误消息。

The package setup script has attempted to modify files on your system
that are not within the EasyInstall build area, and has been aborted.

This package cannot be safely installed by EasyInstall, and may not
support alternate installation locations even if you run its setup
script by hand.  Please inform the package's author and the EasyInstall
maintainers to find out if a fix or workaround is available.

具体来说,我尝试了 matplotlib、seaworth 和 pandas。后者在 Windows 控制台中可以工作,但在 pycharm 包管理器中却不行。

答案1

对于遇到此问题并需要使用 Python 3.8+ 的用户,请确保将 setuptools 更新到版本 42.0.0(或更高版本)。

pip install --upgrade setuptools

答案2

我在使用 python 3.8.0 时遇到了这个问题

我卸载了 python 3.8 并安装了 3.7.5,似乎已经修复了。

相关内容