25
loading...
This website collects cookies to deliver better user experience
python3 --version
sudo apt update
sudo apt install software-properties-common
sudo apt install python3.8
python3 --version
sudo apt install -y python3-pip
sudo apt install -y python3-venv
python3 -m venv <virtual_enviornment_name>
source <virtual_enviornment_name>/bin/activate
(virtual_enviornment_name) raghu:~/Projects
python3
django-admin --version
sudo apt install python3-django
django-admin startproject <project_name>
python3 manage.py migrate
python3 manage.py runserver