how to check django rest framework version

To check the version of Django Rest Framework in your Django project, you can follow these steps:

  1. Open your terminal or command prompt.

  2. Navigate to the root directory of your Django project.

  3. Run the following command to check the version of Django Rest Framework:

python -m pip show djangorestframework

This command will display information about the installed package, including the version number.

That's it! You have now checked the version of Django Rest Framework in your Django project.

[[SOURCE 10]]