- 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
@raitisd: Well, that's the idea.
For some reason,
brewrecently decided thatpythonrefers topython3instead ofpython2.It's a pain in the ass.
Here, I wrote you a little script:
The output should look like this:
If it does, it should be fixed.
The copy of
pythonthat belongs to the OS still lives here:/usr/bin/python