0๐
โ
-
You can clone the repository, if you have git installed:
$ git clone https://github.com/django/django.git $ cd django django $ ls
-
You can create a virtual environment, install django in it and the play with the local copy:
$ virtualenv ~/my_django $ source ~/my_django/bin/activate (my_django) $ pip install django
-
The easiest option is to simply browse the source online if all you want to know is how something is put together.
๐คBurhan Khalid
1๐
If you installed it, youโll have the entire code available somewhere like /usr/lib/python/site-packages/django
(use locate django
in terminal to find the correct dir) on Linux or C:/Python27/Lib/site-packages/django
on Windows.
You can see the code, and even make modifications. If you want to contribute to Django, youโll need some knowledge before, and follow some rules.
๐คMaxime Lorant
- [Answer]-Django jquery datatable: Uncaught TypeError: Cannot read property 'length' of undefined
- [Answer]-Saving additional information to the database conditionally when using a modelfrom in django
Source:stackexchange.com