When you use virtualenv , you can specify the requirements.txt file to install all the dependencies.
Typical Usage:
$ pip install -r requirements.txt
Packages must be in a specific format for pip to understand that
feedparser==5.1.3 wsgiref==0.1.2 django==1.4.2 ...
This is the "requirements format".
Here django==1.4.2 implies the installation of django version 1.4.2 (although the latter is 1.6.x). If you do not specify ==1.4.2 , the latest version will be installed.
You can read more in the Virtualenv and pip Basics "section, and the official documentation file format requirements .
karthikr Sep 23 '13 at 18:49 2013-09-23 18:49
source share