Create virtual environment with specific version of python
If you need to use such a version like Python 3.8:
sudo apt install python3.8
sudo apt install python3.8
sudo apt install python3.8-venv python3.8-dev
sudo python3.8 -m venv env-directory
source env-directory/bin/activate
Comments
Post a Comment