How do I download Pygame for Python 3.5.1?

前端 未结 6 1667
醉梦人生
醉梦人生 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:40

    Download to pygame3.5

    Then put this into your cmd

    cd [location of python3.5]
    python -m pip install [location of pygame]
    python -m pip install --upgrade pip
    

    Then type

    import pygame
    pygame.init()
    

提交回复
热议问题