I know absolutely nothing about Django, but I need to run an existing project on OSX.
From the project directory, I run python manage.py runserver and get the error: Error: No module named cms .
It looks like the INSTALLED_APPS constant (in settings.py) defines the required modules... but how do I install the damn things?
Is there a standard way to install dependencies in bulk (like Ruby's Bundler)?
you can install all dependencies at once, if there is a requirements.txt file. you just have to run the following command:
pip install -r requirements.txtotherwise you can install one by one:
pip install django-cmsHere is the pip documentation: http://pypi.python.org/pypi/pip
if you are used to Ruby, you can compare it with Ruby GEM