Reputation: 77
image showing directories and code
I'mm trying to import views.py I've already tried import personal_portfolio.hello_world.views
Upvotes: 0
Views: 82
Reputation: 525
If you are using python3 you need to do a relative import instead of absolute so change import views
to from . import views
and in django it is always good to import with whole relative path Eg: from hello_world import views
Upvotes: 2