Please help me to find reason on MacOS why when I including library
import wget
I'm getting error
File "/Users/xx/python/import.py", line 4, in <module>
import wget
ImportError: No module named wget
This library is installed
xx$ pip3 install wget
Requirement already satisfied: wget in /usr/local/lib/python3.6/site-packages (3.2)
I just suppose that some path is not set, but I don't know how to prove this.
Please help me find solution for this problem.