This is a memorandum when creating a Python environment on Ubuntu. This is the installation command for Python3.x (3.8 at the time of posting).
$ sudo apt install python3.8
Installation of Python 3.8 itself.
You will be able to use the python3.8 command.
Required to run .py files.
$ sudo apt install python3-pip
Install Python package management tools.
You will be able to use the pip3 command.
Required to install a wide variety of python libraries.
Recommended Posts