ubuntu - Virtualenv cannot specify minor Python version -
virtualenv not let me specify 2.7.5 in command (the version of python need), allows 2.7. however, specifying 2.7 gives me 2.7.4, version below 1 need. inherent limitation of virtualenv or missing something?
$ virtualenv test/test --no-site-packages --python=python2.7
system ubuntu 13.04, has python 2.6.8, 2.7.4 , 3.3.1 installed.
just download/make/install/apt-get/synaptic python 2.7.5 , point @ it's path when creating virtulenv:
virtualenv test/test -p /usr/bin/my_2.7.5_directory/python2.7
Comments
Post a Comment