python - django views - unresolved import -
i have installed cloudinary
image cdn service easy_install
, put cloudinary
settings.py app, did syncdb --migrate
. point fine.
but once want use in views.py:
import cloudinary
...it showing error, unresolved import: cloudinary
what can reason this? thought easy_install
solves path related issues while installing. not?
for may encounter issue, solution worked me is:
go preferences / pydev / interpreter - python , remove interpreter , autoconfig again. find modules , import them
Comments
Post a Comment