python virtual environment
python3 -m venv env
python -m virtualenv env #py2
source env/bin/activate
#all this is on same directory
python virtual environment
python3 -m venv env
python -m virtualenv env #py2
source env/bin/activate
#all this is on same directory
python install library in virtualenv
# ------- How to use a virtual environment on MAC? -------- #
# Use the command line to:
1º - Instal Python3 and pip3
2º - Create a folder for your virtual environment:
>> cd "path_to_the_place_you_want_to_locate_your_folder"
>> python3 -m venv "name_of_env"
3º - Activate this virtual environment:
>> source "name_of_env"/bin/activate
4º - Now you can install new things inside this environment:
>> pip3 install django # for example
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us