Darshan Patel
Darshan Patel

Reputation: 13

ImportError: No module named rest_framework_extensions.cache.mixins

Trying to set up RDMO on a apache server, but when running "python manage.py runserver" this error accures. Before that many other import Error accurred which I solved by pip install missing package, but i am not able to find requred package to solve this error.

And it would also be very helpful if someone can provide name to the whole package/bundle required for RDMO server run.

Upvotes: 1

Views: 2758

Answers (2)

Mohideen bin Mohammed
Mohideen bin Mohammed

Reputation: 20147

you need to do,

pip install drf-extensions

its because of drf-extensions missing.. install it will fix

Upvotes: 3

Vlad Sydorenko
Vlad Sydorenko

Reputation: 651

It looks like you need to install drf-extensions package

Upvotes: 4

Related Questions