Hello, AFAIK, there's no "download". The best way I know to install Django is to use virtualenvs. In your ubuntu laptop do:
$ sudo apt-get install virtualenvwrapper Logoff and login. Now do: $ mkvirtualenv myapp That will switch your prompt to something like (myapp) youruser@yourhost:~$ Now do: $ pip install django And that's it. You can now use django-admin.py starproject, startapp, runserver, etc. Do some reading on virutalenv (and/or virtualenvwrapper) so you don't get lost. Regards, Norberto 2015-10-04 6:25 GMT-03:00 harish harish <[email protected]>: > hi friends i am new to use django in my ubuntu laptop > i want to download django in my ubuntu laptop > please send link how to download > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/3580a25a-2e3f-43c3-a4d0-2368ae20f0ac%40googlegroups.com. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CADut3oAZf3FJ-nmg8RCJCy7CY%2B%3DwkXEB%2B0b6YLcOn7pq2ejwew%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.

