Skip to content

Instantly share code, notes, and snippets.

@LinuxlinkedBD
Created December 20, 2020 16:02
Show Gist options
  • Save LinuxlinkedBD/9491b6760991f614c8e04766e3995c3a to your computer and use it in GitHub Desktop.
Save LinuxlinkedBD/9491b6760991f614c8e04766e3995c3a to your computer and use it in GitHub Desktop.
Django Installation on Ubuntu 18.04
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