Ubuntu has horribly out of date django so install with pip

This commit is contained in:
Lucas Schumacher 2024-05-19 21:21:50 -04:00
parent ce2d75c41f
commit 04f647e3f4

View File

@ -17,12 +17,15 @@ Install python 3 and the django module. Python 2 is incompatible and [is no long
**NOTE**: On some *inferior* linux distros you have to run python with the `python3` command to actually run the modern version of python. **NOTE**: On some *inferior* linux distros you have to run python with the `python3` command to actually run the modern version of python.
``` ```
# For debian/ubuntu based systems # For Debian/Ubuntu based systems
sudo apt install git python3 python3-django sudo apt install git python3 python3-pip
pip install --user django
```
```
# For Arch Linux based systems # For Arch Linux based systems
sudo pacman -Syu git python python-django sudo pacman -Syu git python python-django
```
```
# For Windows sytems # For Windows sytems
winget install python3 git.git winget install python3 git.git
python -m ensurepip --upgrade python -m ensurepip --upgrade