You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: