Skip to content

Instantly share code, notes, and snippets.

@LinauxTerminology
Created March 18, 2021 18:01
Show Gist options
  • Select an option

  • Save LinauxTerminology/4ffc493e15c83e8bf7f36c99e5d5109e to your computer and use it in GitHub Desktop.

Select an option

Save LinauxTerminology/4ffc493e15c83e8bf7f36c99e5d5109e to your computer and use it in GitHub Desktop.
I Will Do Django Install On Ubuntu 20.04
# !/bin/sh
# Install Packages
sudo apt update
python3 -V
sudo apt install python3-django
django-admin --version
#Install Virtual Environment
sudo apt update
python3 -V
sudo apt install python3-pip
sudo apt install python3-venv
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
@LinauxTerminology

Copy link
Copy Markdown
Author

Screenshot from 2021-03-18 22-23-21
Screenshot from 2021-03-18 21-57-42
Screenshot from 2021-03-18 22-22-33
Screenshot from 2021-03-18 22-23-01

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment