from imbox import Imbox import traceback
getting 'ImportError: No module named imbox' how can i solve this error
from imbox import Imbox
CodePudding user response:
This means that package imbox
is not installed.
You can install it, using this command:
pip install imbox
CodePudding user response:
I don't think imbox is an automatically installed package. Try installing imbox first by typing
pip install imbox
in your command prompt