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
- [Django]-Simple API's to play around with for Python/Django?
- [Django]-How to populate a model field via django signals with post_save?
Source:stackexchange.com