Installation with Python 3 using PIP
You can install the Django Admin Settings Python package from PIP repository using:
python3 -m pip install django-admin-settings
You can install the downloaded Wheel package (.whl) using:
cd "~/folder with the downloaded file"
python3 -m pip install django-admin-settings-versione-*.whl
If you prefer to use the source code package you can extract and install it using:
cd "~/folder with the downloaded file"
tar xzf "django-admin-settings-version.pkg.tar.gz"
python3 -m pip install -e "django-admin-settings-version"
To uninstall the package later you can use:
python3 -m pip uninstall django-admin-settings