Posts

Showing posts from February, 2021

Install Pygame Zero or Pygame in Python3

 Install Pygame Zero or Pygame in Python3 pygame  is a free and open-source cross-platform library for the development of multimedia applications like video games using Python. It uses the Simple DirectMedia Layer library and several other popular libraries to abstract the most common functions, making writing these programs a more intuitive task. On Ubuntu Linux There is a .deb package of Pygame for  Python  3 available in  this PPA . Add the PPA to your system sources: sudo add-apt-repository ppa:thopiekar/pygame Update the package list: sudo apt-get update Install the package: sudo apt-get install python 3-pygame Install Pygame Zero with pip: pip3 install pgzero On Windows Install Pygame for  Python  3. This is available as a .msi installer from the  Pygame Bitbucket . Install Pygame Zero with pip: pip install pgzero On OSX homebrew  is a package manager for OSX. It will allow you to install nearly everything you need to get Pyga...