Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
pip can't install pygame
#1
I went to the command prompt and typed py -m pip install -U pygame --user. It looked like it was working fine and then this popped up on the command prompt: Command "python setup.py egg_info" failed with error code 1 in C:\Users\Sheep\AppData\Local\Temp\pip-build-lxa1hxvd\pygame.
Reply
#2
It's just pip install pygame
Run cmd as administrator.
This follow setup here Python 3.6/3.7 and pip installation under Windows
From start cmd with some explanation.
Microsoft Windows [Version 10.0.17134.407]
(c) 2018 Microsoft Corporation. Med enerett.

C:\WINDOWS\system32>cd\

# What python version used 
C:\>python -c "import sys; print(sys.executable)"
C:\python37\python.exe

# pip version "18.1" is the newest(python -m pip install --upgrade pip)
C:\>pip -V
pip 18.1 from c:\python37\lib\site-packages\pip (python 3.7)

# Install pygame
C:\>pip install pygame
Collecting pygame
  Using cached https://files.pythonhosted.org/packages/b0/30/.../pygame-1.9.4-cp37-cp37m-win32.whl
Installing collected packages: pygame
Successfully installed pygame-1.9.4

# Test that it work
C:\>python
Python 3.7.1 (v3.7.1:260ec2c36a, Oct 20 2018, 14:05:16) [MSC v.1915 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import pygame
pygame 1.9.4
Hello from the pygame community. https://www.pygame.org/contribute.html
>>> pygame.__version__
'1.9.4'
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Can't get pygame to install djwilson0495 13 10,208 Dec-07-2020, 01:30 PM
Last Post: djwilson0495
  Trying to install pygame Mac OS x high sierra giladal 2 2,738 Oct-18-2020, 09:27 PM
Last Post: nilamo
  Error to install pygame skp 1 3,479 Apr-14-2020, 05:17 PM
Last Post: joe_momma
  PIP cannot install Pygame Amaly84 6 9,853 Sep-04-2019, 07:59 PM
Last Post: Amaly84
  pip install pygame choking on SDL dependency sneakyimp 20 12,815 Jan-23-2019, 12:36 PM
Last Post: metulburr
  How to install Pygame chappie 2 3,419 Dec-06-2017, 10:47 PM
Last Post: chappie
  How to begin coding for game making [Install pygame on mac] mattkrebs 2 4,948 Apr-02-2017, 10:57 AM
Last Post: machrider
  [split] permission error on pygame install pyteach 7 8,200 Jan-23-2017, 11:00 PM
Last Post: pyteach

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020