Difference between revisions of "Installing pygame"
(→College Work Around) |
(→College Work Around) |
||
Line 4: | Line 4: | ||
[https://drive.google.com/file/d/1v7H3zlvcDNk21dJhfn6_PczMbaL6mehf/view?usp=sharing PyGame Libraries] | [https://drive.google.com/file/d/1v7H3zlvcDNk21dJhfn6_PczMbaL6mehf/view?usp=sharing PyGame Libraries] | ||
− | Extract these folders to the same location as your .py file. | + | Extract these folders to the same location as your .py file. It contains the required files to use PyGame and also the library to draw TMX maps. |
==Manual Installation== | ==Manual Installation== |
Revision as of 09:12, 16 September 2018
College Work Around
At the moment you can't install pygame into python due to permissions, however it is easy to set it up without installing. You need to download the following zip file:
Extract these folders to the same location as your .py file. It contains the required files to use PyGame and also the library to draw TMX maps.
Manual Installation
if you have access to the command line, and have already installed Python 3 (ie not via Visual Studio etc) you can type the following command to install PyGame:
python3 -m pip install pygame
Visual Studio 2017
If you added the Python option during the install process, Python3 should be installed along with the pip program. So on the tools tab, look for Python and then choose Python Environments.
Now you should see a combo box with overview selected, change this to packages.
This will show the packages currently installed, one should be pip. If at this stage pygame is listed then it is already installed if not, In the search box type pygame and press enter. You might get a message to escalate your privilges, choose yes.
This will now install pygame.
One final step is to change the combo box to Intellisense, this will add the pygame commands to the intellisense system.
If you didn't add Python during the installation of Visual Studio 2017, you can still add it by selecting the tools tab, and then choose Get Tools & Features to restart the installer, and allow you to add Python. I have used the default options and not added any other packages, this required an additional 470mb of disk space.