So, I have a book about Python, and it wants me to download the python shell from this website: www.python.org/downloads/source
I can't figure out how. Can someone help?
So, I have a book about Python, and it wants me to download the python shell from this website: www.python.org/downloads/source
I can't figure out how. Can someone help?
Ubuntu 20.04 has Python 3 pre-installed.
To open the Python shell, from a terminal type:
python3
In other supported Ubuntu versions you can install Python from the repositories. I would suggest you do this rather than downloading installers from the Internet:
sudo apt install python3
Then run python3
to open the Python shell.
python3
andpython
(which means python2) pre-installed. Recent releases already havepython3
installed (the default now forpython
) You should need to download or install anything for any supported release (or flavor) of Ubuntu – guiverc Aug 08 '20 at 23:49