python - How to make virtualenv to use the last version of distribute by default? -
i use virtualenv keep right version of dependancies installed project.
virtualenv apps --distribute the problem when using that, virtualenv keep installing distribute==0.6.19
i need each time run first :
pip install distribute -u why , how can make install directly right version of distribute ?
thank you.
there similar question updating pip on python-virtualenv list. i've repeated here convenience:
if using recent virtualenv can use --extra-search-dir option point alternate directory containing distribute package wish install. documented here:
http://www.virtualenv.org/en/latest/index.html#the-extra-search-dir-option
user-provided extra-search-dir paths have precedence on "builtin" search paths, should able achieve want
Comments
Post a Comment