Skip to content

Instantly share code, notes, and snippets.

@LinuxPlaner
Created November 1, 2021 17:52
Show Gist options
  • Save LinuxPlaner/6740466104cbf825f6b12ce6af081ee9 to your computer and use it in GitHub Desktop.
Save LinuxPlaner/6740466104cbf825f6b12ce6af081ee9 to your computer and use it in GitHub Desktop.
How To Install Python-3.8.6 Into Ubuntu 20.04 LTS
Ping Me For django installing related service:
SMS: +8801610932753
IMO: +8801610932753
BiP: +8801610932753
Viber: +8801610932753
Signal: +8801610932753
Discord: supanta saha#3868
Telegram: https://t.me/LinuxPlaner
WhatsApp: https://wa.link/njuw4c
Skype: https://join.skype.com/weW8UDI0u7o5
Email: [email protected]
sudo apt update
python3 -V
sudo apt install python3-django
django-admin --version
#Install Virtual Environment
sudo apt update
python3 -V
sunv
mkdir ~/ataurproject
cd ~/ataurproject
python3.6 -m venv my_env
source my_env/bin/activate
pip install django
django-admin --version
deactivate
cd ~/ataurproject
source my_env/bin/activate
# Development Version Install with Git
sudo apt update
python3 -V
# Creating a Sample Project
pip install django
django-admin startproject djangoproject .
python manage.py migrate
python manage.py createsuperuser
http://your_server_ip:8000/admin/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment