这个问题在互联网上被问到很多,但直到现在我还没有找到像我一样的错误的人(也许我看起来不够努力,谁知道)。
我使用的是Windows 10 64位Acer笔记本电脑(我不知道任何其他规格,它不是我的)并尝试安装 pygame-1.9.3- cp36-cp36m-win32.whl (我已经被告知最好能够获得Python和Pygame的32位版本)。我进入PowerShell时收到此错误:
PS C:\Program Files (x86)\Python36-32\Scripts> pip3 install pygame-1.9.3-cp36-cp36m-win32.whl
Processing c:\program files (x86)\python36-32\scripts\pygame-1.9.3-cp36-cp36m-win32.whl
Installing collected packages: pygame
Exception:
Traceback (most recent call last):
File "c:\program files (x86)\python36-32\lib\site-packages\pip\basecommand.py", line 215, in main
status = self.run(options, args)
File "c:\program files (x86)\python36-32\lib\site-packages\pip\commands\install.py", line 342, in run
prefix=options.prefix_path,
File "c:\program files (x86)\python36-32\lib\site-packages\pip\req\req_set.py", line 784, in install
**kwargs
File "c:\program files (x86)\python36-32\lib\site-packages\pip\req\req_install.py", line 851, in install
self.move_wheel_files(self.source_dir, root=root, prefix=prefix)
File "c:\program files (x86)\python36-32\lib\site-packages\pip\req\req_install.py", line 1064, in move_wheel_files
isolated=self.isolated,
File "c:\program files (x86)\python36-32\lib\site-packages\pip\wheel.py", line 345, in move_wheel_files
clobber(source, lib_dir, True)
File "c:\program files (x86)\python36-32\lib\site-packages\pip\wheel.py", line 316, in clobber
ensure_dir(destdir)
File "c:\program files (x86)\python36-32\lib\site-packages\pip\utils\__init__.py", line 83, in ensure_dir
os.makedirs(path)
File "c:\program files (x86)\python36-32\lib\os.py", line 220, in makedirs
mkdir(name, mode)
PermissionError: [WinError 5] Access is denied: 'c:\\program files (x86)\\python36-32\\Lib\\site-packages\\pygame'
不太确定发生了什么。如果有人做,请提前多多谢谢。
答案 0 :(得分:1)
在您的情况下,它似乎是权限问题,因此请尝试以管理员身份运行它。如果它不起作用,这是我的建议:
我一直有问题在Windows中安装python库,直到我找到这个回购,它从来没有让我失望。我从这里安装了pygame 20次,总是有效。试一试,让我知道: Stackoverflow link