Reputation: 13
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
Reputation: 20147
you need to do,
pip install drf-extensions
its because of drf-extensions missing.. install it will fix
Upvotes: 3