The instructions are based on the shell files in this repository.
Each sub-section is based on one file from the shell files and some additional info if needed.
This is for making it easy to copy the instructions provided in the shell files.
mkdir Foldernamecd Foldernamepip install virtualenvIf you are in a externally managed environment like in Arch Linux then you can try
pacman -S python-virtualenvIf it fails you can try
pip install virtualenv --break-system-packagesIf it fails again, then you are using Linux, we trust in you.
python -m virtualenv namename/scripts/activateIf the script is not there, then look it maybe in bin or somewhere, you know what you are doing right?
pip install djangodjango-admin startproject (Projectname)cd (Projectname)python manage.py runserverEdit your files and enjoy the development process. Good Luck!