install virtualenv code example
Example 1: install virtualenv
pip install virtualenv
activate it by doing this:
cd myproject/Scripts/activate
Example 2: pip install virtualenv windows
python3 -m venv env
pip install virtualenv
activate it by doing this:
cd myproject/Scripts/activate
python3 -m venv env