Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ricardogarfe/49221886883f640c7c405406bdb02ad3 to your computer and use it in GitHub Desktop.
Save ricardogarfe/49221886883f640c7c405406bdb02ad3 to your computer and use it in GitHub Desktop.
Setting up and using Python3 Virtualenv on Mac

Python3 Virtualenv Setup

Requirements
  • Python 3
  • Pip 3
$ brew install python3

Pip3 is installed with Python3

Usage

Creation of virtualenv:

$ python3 -m venv <desired-path>

Activate the virtualenv:

$ source <desired-path>/bin/activate

Deactivate the virtualenv:

$ deactivate

About Virtualenv

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment