Created
March 18, 2021 18:01
-
-
Save LinauxTerminology/4ffc493e15c83e8bf7f36c99e5d5109e to your computer and use it in GitHub Desktop.
I Will Do Django Install On Ubuntu 20.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
| # !/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
commented
Mar 18, 2021
Author




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