I know absolutely nothing about Django, but I am needing to get an existing project running in OSX.
From the project’s directory I run python manage.py runserver and get the error: Error: No module named cms.
Seems like the INSTALLED_APPS constant (in settings.py) defines the required modules… but how do I install the dang things?
Is there a standard way of installing dependencies in bulk (like Ruby’s Bundler)?
you can install all dependencies in once, if there is a requirements.txt file! you just have to run the follow command:
otherwise you can install one by one:
Here is the PIP documentation:
http://pypi.python.org/pypi/pip
if you are used to ruby, you can compared to ruby GEM