Open jackylee1 opened 5 years ago
getting the same error here :P hopefully someone know how to fix it and give us a fix
It's because your sys path doesn't have ui at root. Just do
import sys
sys.path.insert(0, './ui/')
This will insert the ui module in your root path, Then instead of
from ui.ui import *
Do
from ui import *
ImportError: No module named ui.ui ?