我安装了 pip 附带的 64 位 python 3.4。我想安装 pygame,而且我知道他们网站上的 32 位版本不适用于我的 python 版本。所以我从这里下载了 64 位 python 3.4 pygame 包(pygame‑1.9.2a0‑cp34‑none‑win_amd64.whl)。我将包重命名为pygame.whl
并尝试在命令行上使用 pip 来安装它,但它给了我这个错误;
Collecting pygame
Could not find a version that satisfies the requirement pygame (from versions:
)
Some externally hosted files were ignored as access to them may be unreliable
(use --allow-external pygame to allow).
No matching distribution found for pygame
所以我尝试使用该--allow-external
选项,但它给了我一个不同的错误并要求我提供一个需求文件。我环顾四周,发现我可能需要尝试使用该--pre
选项,但无论如何它给了我与上面完全相同的错误。如何安装软件包?