Hey Reddit. I'm super new to ubuntu. (like 3 days ago I got my first machine running it.) and need some quick help. I want to install python so I can run code on the machine and I have no idea how to do that. I'm guessing it'll be something like "sudo install python3.9". thanks for the help!
Unsure how to install python for playonlinux
linux - Installing python modules on Ubuntu - Stack Overflow
How to install Python on Ubuntu?
python3 on Ubuntu
How do I install pip for the new Python version?
Will installing a new Python version break my system?
How do I make the new Python version the default?
Videos
There are two nice ways to install Python packages on Ubuntu (and similar Linux systems):
sudo apt-get install python-pygame
to use the Debian/Ubuntu package manager APT. This only works for packages that are shipped by Ubuntu, unless you change the APT configuration, and in particular there seems to be no PyGame package for Python 3.
The other option is to use PIP, the Python package manager:
sudo apt-get install python3-pip
to install it, then
sudo pip3 install pygame
to fetch the PyGame package from PyPI and install it for Python 3. PIP has some limitations compared to APT, but it does always fetch the latest version of a package instead of the one that the Ubuntu packagers have chosen to ship.
EDIT: to repeat what I said in the comment, pip3 isn't in Ubuntu 12.04 yet. It can still be installed with
sudo apt-get install python3-setuptools
sudo easy_install3 pip
sudo apt-get purge python-pip
After this, pip is the Python 3 version of PIP, instead of pip3. The last command is just for safety; there might be a Python 2 PIP installed as /usr/bin/pip.
Try to install pip.
apt-get install python-pip
pip install pygame