Decouple Module Error Running Django 1.8 Project Using Django 1.9
Currently, I am using latest version of Django 1.9. I have a project that is written in Django 1.8 When I tried to runserver, I encountered the following error What should I do a
Solution 1:
It is not because you use Django 1.9 that you get that error, it is because that module is not install at the moment. Run pip install python-decouple
to install the module.
Solution 2:
In my case installing python-decouple also outside the vitualenv solved the problem.
comp@debian:~/Desktop/prj$sudo pip install python-decouple
(venv) comp@debian:~/Desktop/prj$pip install python-decouple
Post a Comment for "Decouple Module Error Running Django 1.8 Project Using Django 1.9"