Python Virtual Environment
Purpose of Python virtual environment
To create an isolated environment for different Python projects
You can install a specific version of module on each project without worrying that it will affect your other Python projects.
Create Virtual Environment for Python 3
Check your python version
Install
virtualenv
Create a virtual environment
activate your virtual environment
set up command alias in .
bashrc
Last updated