在python 3.5

时间:2015-11-22 20:10:22

标签: python pygame python-3.5 python-wheel

我已经安装了pygame 1.9.2 for whthon 3.5 32位的whl文件并将其放在“C:\ Python35 \ Scripts”中。当我在脚本文件夹中打开命令窗口并键入

pip3 install pygame-1.9.2a0-cp35-none-win32.whl 

它说

Fatal error in launcher: Unable to create process using '"'

我按照here的说明操作,我听说它适用于python 3.5。我一直在努力解决这个问题,有人可以帮助我做下一步该做什么吗?

2 个答案:

答案 0 :(得分:8)

以下是使用较新 Python 3.5 的用户的说明:

我刚刚在Windows上成功安装了Pygame 1.9.2a0-cp35,它运行的是Python 3.5.1。

  • 安装Python,并记住安装位置
  • 转到here并下载pygame-1.9.2a0-cp35-none-win32.whl
  • 将下载的.whl文件移至python35/Scripts目录
  • 在目录> Scripts中的Shift目录Right click - Open a command window here中打开命令提示符
  • 输入命令:

    pip3 install pygame-1.9.2a0-cp35-none-win32.whl

  • 如果您在最后一步中遇到错误,请尝试:

    python -m pip install pygame-1.9.2a0-cp35-none-win32.whl

那应该这样做。经测试可在Windows 10 64bit上运行。

答案 1 :(得分:1)

尝试运行

python -m pip install pygame-1.9.2a0-cp35-none-win32.whl

这应该是解决Windows上的"space problem"点数。

希望这会有所帮助:)