How do I download Pygame for Python 3.5.1?

前端 未结 6 1599
醉梦人生
醉梦人生 2021-01-18 09:06

I am unable to find a pygame download for Python 3.5 and the ones I have downloaded don\'t seem to work when I import to the shell. Help?

This is the message I recei

6条回答
  •  礼貌的吻别
    2021-01-18 09:32

    In an anaconda environment with python 3.5 installed, you can simply do:

    pip install pygame

    $pip install pygame
    Collecting pygame
      Downloading pygame-1.9.3-cp35-cp35m-manylinux1_x86_64.whl (9.4MB)
        100% |***************************| 9.4MB 132kB/s 
    Installing collected packages: pygame
    Successfully installed pygame-1.9.3
    

    I'm in ubuntu 14.04, this should work with newer and other linuxes.

提交回复
热议问题