Hi, before pip install virtualenv used to create virtualenv and virtualenv-2.7 executables. But today, I noticed the pip command creates virtualenv and virtualenv-3.4. What is the reason for this, and how can I get virtualenv-2.7?
My environment:
$ ls /usr/local/bin/virtualenv*
/usr/local/bin/virtualenv /usr/local/bin/virtualenv-3.4
$ virtualenv --version
12.0.4
$ pip --version
pip 6.0.3 from /Library/Python/2.7/site-packages (python 2.7)
$ python --version
Python 2.7.5
Hi, before
pip install virtualenvused to createvirtualenvandvirtualenv-2.7executables. But today, I noticed the pip command createsvirtualenvandvirtualenv-3.4. What is the reason for this, and how can I get virtualenv-2.7?My environment: