verify django has been installed

  1. Open a terminal or command prompt.

  2. Execute the following command to check if Django is installed globally: django-admin --version

  3. If Django is installed, you will see the version number. If it's not installed, you will receive an error.

  4. If Django is not installed, install it using the following command: pip install django

  5. After installation, you can again check the version to verify that Django is installed: django-admin --version

  6. You should now see the Django version number, confirming that Django has been successfully installed.