[Django]-How to locally install django third-party apps?

4👍

virtualenv is great for this, especially when combined with pip.

$ virtualenv myproject
$ cd myproject/
$ . bin/activate
(myproject) $ pip install django
(myproject) $ pip install south

3👍

For example: django-grappelli. Install python setup tools and do the next step

$ pip install django-grappelli

and then add to the installed apps

INSTALLED_APPS = (
    'grappelli',
    'django.contrib.admin',
)

This is the way for your question

👤Azd325

Leave a comment