I'm using python version 3.6.1
I want to use method of one python file to another located in a same directory. I have used from utils import wit_response
in app.py file. And when I compile it this shows an error:
Traceback (most recent call last): File "app.py", line 4, in from utils import wit_response File "E:\Study\Python\fbmessengerbot\utils.py", line 1, in from wit import Wit ModuleNotFoundError: No module named 'wit'
In utils.py file I'm using from wit import Wit
. The wit package i have already installed.
How can i resolve this.
Thanks in advance.