pypi から入手可能な最新の setuptools と pip を virtualenv に強制的に使用させることは可能ですか? 本質的に、私は旗の反対を探しています。--never-download
現在、新しい virtualenv を作成すると、virtualenv にバンドルされているローカル (古い) バージョンが使用されます。
$ v.mk testvenv
New python executable in testvenv/bin/python
Installing setuptools............done.
Installing pip...............done.
$ pip show setuptools
---
Name: setuptools
Version: 0.6c11
Location: /Users/cwilson/.virtualenvs/testvenv/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg
Requires:
$ pip search setuptools
[...]
setuptools - Easily download, build, install, upgrade, and
uninstall Python packages
INSTALLED: 0.6c11
LATEST: 0.7.2
[...]