xxxxxxxxxx
#using pip show
(env) $ pip show djangorestframework
Version: 3.13.1
#using pip freeze
(env) $ pip freeze
djangorestframework==3.13.1
# using django shell
(env) $ python manage.py shell
>>> import rest_framework
>>> rest_framework.VERSION
'3.13.1'