- Python 3
- Pip 3
$ brew install python3Pip3 is installed with Python3
To install virtualenv via pip run:
$ pip3 install virtualenvCreation of virtualenv:
$ virtualenv -p python3 <desired-path>Activate the virtualenv:
$ source <desired-path>/bin/activateDeactivate the virtualenv:
$ deactivate
Well I tried this and it doesn't work for me. It fails here:
I can add
/Users/enewhuis/Library/Python/3.6/binto my path but, as is, the instructions here didn't work.