I use Django but I need to find the default templates and applications.
I don\'t know where it\'s installed.
How can I find that?
As the comments on @olafure's answer https://stackoverflow.com/a/12974642/4515198 rightly say, the sys.path assignment is not required.
The following will be enough:
python -c "import django; print(django.__path__)"
Here the -c option is used to tell python that a "program is being passed in as string" (source: command $ python --help on bash)