python3 -m venv env
source ./env/Scripts/Activate
You can confirm you’re in the virtual environment by checking the location of your Python interpreter, it should point to the env directory.
which python
source ./env/Scripts/deactivate
python3 -m venv env
source ./env/Scripts/Activate
You can confirm you’re in the virtual environment by checking the location of your Python interpreter, it should point to the env directory.
which python
source ./env/Scripts/deactivate