xxxxxxxxxx
[server]$ pip3 install virtualenv
Collecting virtualenv
Downloading virtualenv-15.1.0-py2.py3-none-any.whl (1.8MB)
100% |████████████████████████████████| 1.8MB 367kB/s
Installing collected packages: virtualenv
Successfully installed virtualenv-15.1.0
xxxxxxxxxx
//to create the virtual environment in windows
python -m venv env
// or
python3 -m venv env
//to activate virtual environment in windows
source env/Scripts/activate
//to disable virtual environment in windows
deactivate
xxxxxxxxxx
//create the virtual environment for Mac and Linux
python -m venv env
// or
python3 -m venv env
//activate virtual environment for Mac and Linux
source env/bin/activate
install packages in venv
xxxxxxxxxx
### install library `virtualenv`
$ pip3 install virtualenv
### call module `venv` with the name for your environment
$ python3 -m venv venv_name
### activate the created environment
$ source venv_name/bin/activate #key step
### install the packages
(venv_name) user@host: pip3 install "package-name"
xxxxxxxxxx
python3.8 -m pip install --user virtualenv
python3.8 -m virtualenv --help
xxxxxxxxxx
python3 -m venv /path/to/new/virtual/environment
source <venv>/bin/activate