pip install virtualenv
mkdir my_new_project
cd mynew_project
virtualenv my_env
source my_env/bin/activate
your environment should be activated and visible on the prompt (my_env)$. You can start installing packages with pip
pip install name_package_you'd like to install
to deactivate write deactivate in your command line
deactivate
pip install virtualenv mkdir my_new_project cd mynew_project virtualenv my_env source my_env/bin/activate your environment should be activated and visible on the prompt (my_env)$. You can start installing packages with pip pip install name_package_you'd like to install to deactivate write deactivate in your command line deactivate