6 ms·
when virtualenv was released with python 3.3 it didnt come with pip.
by tbatterii 13y ago
when virtualenv was released with python 3.3 it didnt come with pip.
- Shish2k 13y agoDidn't come with it, or didn't install it by default? AFAIK the default virtualenv behaviour has been "create an environment and then automatically and immediately install pip from the internet", so for the last several years they've been practically tied together, even if they were distributed individually.
- jessaustin 13y agoDidn't come with it, or didn't install it by default? In that the following commands have also been required after running pyvenv-3.3, no, python has not "come with" pip: (venv) $ wget http://python-distribute.org/distribute_setup.py (venv) $ python distribute_setup.py (venv) $ easy_install pip I believe it has been possible to configure pyvenv to do this automatically, but I've never done that.
- Shish2k 13y agoI was talking about virtualenv, not pyvenv - grandparent saying "virtualenv was released with python 3.3" made it sound like virtualenv was released with python 3.3...
- tbatterii 13y agoi think you are confusing virtualenv with pyvenv which is what came with python 3.3 http://www.python.org/dev/peps/pep-0405/ http://www.python.org/dev/peps/pep-0405/