1/ Install virtaul env: sudo apt install python3-venv 2/ Create an env: python3 -m venv myVirtualPythonEnv 3/ Activate in the shell the env: source myVirtualPythonEnv/bin/activate 4/ Deactivate