Suppose I have to install following pckgs on python 2.6. Django-1.3.1-py2.6.egg django_autocomplete-1.0.dev49-py2.6.egg django_ajax_selects-1.2.3-py2.6.egg how can we do it using virtualenv..
If you explicitly call your Python 2.6 Binary when installing the package it will install to that instance instead. So instead of python setup.py install you would do /path/to/python26 setup.py install.
virtualenv. See this question: stackoverflow.com/questions/1534210/…