How to fix “no module named ‘app_one'”

This error occurs because, the path to the file app_one is not in the current path, and you have to add it to the path using sys.path.append Try :

import sys
sys.path.append('./app_one')
from views import show
show()

Leave a Comment