cannot install djangorestframework latest version(3.12.4) along with django-rest-authemail==2.0.6 version
when trying to install djangorestframework==3.12.4 and django-rest-authemail==2.0.6 via pip i get the error
INFO: pip is looking at multiple versions of datetimerange to determine which version is compatible with other requirements. This could take a while.
ERROR: Cannot install -r requirements.txt (line 16), django-rest-authemail==2.0.6 and djangorestframework==3.12.4 because these package versions have conflicting dependencies.
The conflict is caused by:
The user requested djangorestframework==3.12.4
django-rest-auth 0.9.5 depends on djangorestframework>=3.1.3
django-rest-authemail 2.0.6 depends on djangorestframework==3.11.0
To fix this you could try to:
loosen the range of package versions you've specified
remove package versions to allow pip attempt to solve the dependency conflict
cannot install djangorestframework latest version(3.12.4) along with django-rest-authemail==2.0.6 version
when trying to install djangorestframework==3.12.4 and django-rest-authemail==2.0.6 via pip i get the error
I need to import this into my code
from rest_framework import filters
so that I could usefilter_backends = [filters.SearchFilter]
but due to this package's dependency error I am not able to use the same