我已经安装了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。我一直在努力解决这个问题,有人可以帮助我做下一步该做什么吗?
答案 0 :(得分:8)
以下是使用较新 Python 3.5 的用户的说明:
我刚刚在Windows上成功安装了Pygame 1.9.2a0-cp35,它运行的是Python 3.5.1。
pygame-1.9.2a0-cp35-none-win32.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"点数。
希望这会有所帮助:)