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)
Comments
Thanks! My Django webserver is running.
Thank you. This is the first how-to that actualy worked. Very informative too. Thank you, very much.
Great tutorial! Thanks.
Great!!!!
ThankYou ! It helped a lot.
wow u explained it well, thank u fellas! u r helping others and u should proud of ur self.
Worked first time.
Thanks for the concise steps.
Excellent tutorial! Up and running within 10 minutes.
GREAT Tutorial!!!!
I'm a young django user. Thank you for allowing me to create a website! The different stages are well described.
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!
I'm stack at the very last step.
I run this command
python manage.py runserver 0.0.0.0:8000and then go the the link
http://10.5.5.32:8000/
but it keeps loading with no result
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
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!