3

我正在尝试使用以下命令安装 matplotlib 并遇到以下错误,谁能提供输入这里有什么问题以及如何克服这个问题?

 easy_install matplotlib

错误:-

Couldn't find index page for 'bdist_egg' (maybe misspelled?)
Couldn't find index page for 'bdist_egg' (maybe misspelled?)
Couldn't find index page for 'bdist_egg' (maybe misspelled?)
Couldn't find index page for 'bdist_egg' (maybe misspelled?)
No local packages or download links found for bdist-egg
error: Could not find suitable distribution for Requirement.parse('bdist-egg')
No local packages or download links found for bdist-egg
error: Could not find suitable distribution for Requirement.parse('bdist-egg')
4

2 回答 2

1

无需在 Windows 上自己构建 matplotlib。只需在https://github.com/matplotlib/matplotlib/downloads使用他们提供的二进制文件

于 2013-10-26T00:47:27.447 回答
0

正如 VooDooNOFX 所说,在 Windows 上使用预构建的可执行文件是最简单的。 当您在需要为 Windows 编译的库中运行时,这个 Windows 可执行文件的 UIC 存储库非常有用。这也比其他一些来源具有更新的版本——在撰写本文时,matplotlib 的 github 页面为 1.2.0,而 UIC 存储库为 1.3.1。

如果您只安装了一个版本的 python,只需双击可执行文件即可安装包。如果您需要安装到虚拟环境中,请激活您的环境并使用以下命令安装包:

easy_install mypackage.exe

我发现了这个问题,因为即使遵循这些建议,我也得到了与您相同的输出。如果您仍然看到这些错误,则可能是软件包安装正确**,但 easy_install 正在尝试再次下载并安装该软件包。

如果您明确告诉 easy_install 不要自动下载和安装其他软件包,这个问题就会消失。您可以使用-N 命令行选项来做到这一点。

** 您可以通过键入来测试它python -c 'import matplotlib'。良好的安装不会产生任何错误。

于 2013-10-30T18:21:07.663 回答