Created
December 20, 2020 16:02
-
-
Save LinuxlinkedBD/9491b6760991f614c8e04766e3995c3a to your computer and use it in GitHub Desktop.
Django Installation on Ubuntu 18.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If you need complete Django setup, ping me on below contacts: | |
Telegram: linuxlinked | |
email: [email protected] | |
WhatsApp: +8801720903155 | |
Skype:live:.cid.c0dc316b9d727d5e | |
YouTube: https://youtu.be/vZ6Wyne_Hb8 | |
######################################################################################################################################## | |
sudo apt update && sudo apt upgrade | |
sudo apt install nginx | |
sudo systemctl start nginx | |
sudo systemctl enable nginx | |
systemctl restart nginx | |
systemctl status nginx | |
sudo apt-get install python3 | |
python3 -V | |
cd /var/www/html | |
django-admin startproject django_app | |
#Open your web browser and access the Django Application with your server IP/localhost/0.0.0.0 on port 8000 | |
http://localhost:8000/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment