2👍
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.
0👍
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
- [Answered ]-How to set blank=False in Django form without a Model
- [Answered ]-How to test a Django view which has transaction.atomic(using=myDb)?
Source:stackexchange.com