Comments on How to Install Django on Ubuntu 20.04 LTS

Django is a web application framework written in python that follows the MVC (Model-View-Controller) architecture, it is available for free and released under an open-source license. In this tutorial, we will install Django 3.0 stable version on an Ubuntu 20.04 LTS server.

14 Comment(s)

Add comment

Please register in our forum first to comment.

Comments

By: Mark

Thanks! My Django webserver is running. 

By: Greg

Thank you.  This is the first how-to that actualy worked.  Very informative too.  Thank you, very much.

By: CheolsoonIm

Great tutorial! Thanks.

By: Javen

Great!!!!

By: sangeetha

ThankYou ! It helped a lot.

 

By: mokie

wow u explained it well, thank u fellas! u r helping others and u should proud of ur self.

By: openoneDave

Worked first time.

Thanks for the concise steps.

By: NiTz

Excellent tutorial!  Up and running within 10 minutes.

By: Don Guernsey

GREAT Tutorial!!!!

By: Frank Steeve

I'm a young django user. Thank you for allowing me to create a website! The different stages are well described.

By: Seb

Great guide! 

Maybe you should add that if the server is running, but "http://your-ip:8000/" is not responding then it's probably a firewall issue. 

Thank you! 

 

By: mihail

I'm stack at the very last step.

I run this command

python manage.py runserver 0.0.0.0:8000

and then go the the link

http://10.5.5.32:8000/

but it keeps loading with no result

By: pip

You can replace the server address IP in your manage.py with localhost and then access the server by going to localhost:8000

Or, as Wade said, use your local IP address which you can retrieve in linux by typing 'ip a' or 'ifconfig -a' in your terminal

By: Wade

Replace the IP address 10.5.5.32 with the IP address of your server. For example, if your server has an IP address of 192.168.10.155, then your browser address should be http://192.168.10.155:8000/

Hope that helps!