How to check your Django version
There are multiple ways to check what Django version you are on. Some are easier than others. I will go over 4 options, if they all don’t work for you, comment below and I will try to help you out....
A collection of 5 posts
There are multiple ways to check what Django version you are on. Some are easier than others. I will go over 4 options, if they all don’t work for you, comment below and I will try to help you out....
If you forgot your django admin/superuser password, there are multiple ways to reset it. We will go over them. If you lost your username, then we will find that back again as well.
This Python Gitignore will give you everything you need for your next Python project. This is including a part for specific IDE/code editors. You can remove the ones you don’t use.
One very common error that I get is the ImportError: No module named django.core.management, but fortunately, it’s quite easy to fix.
If you are using Git for version control, you need a Gitignore file to ignore all files that don’t matter and shouldn’t be in your git repository. Think of your virtual environment and all the .pyc files. Those are both...