Reputation: 113
I've followed this tutorial on setting up a python dev environment on osx high-sierra, but for the life of me I cannot get pip3 to install virtualenv
$ pip3 install virtualenv
$ Could not find an activated virtualenv (required).
my .bash_profile contains export PATH=/usr/local/bin:/usr/local/sbin:$PATH as the last line.
$ python --version
$ Python 2.7.10
&
$ python --version
$ Python 3.6.5
This doesn't help me either: pip: Could not find an activated virtualenv (required)
I'm stumped. Suggestions sought and welcome.
Upvotes: 1
Views: 1157
Reputation: 34657
python3 has incorporated virtualenv into the venv module rendering the module unnecessary.
Upvotes: 1