I have to import tqdm
using the following import command, but when I do I get an error.
Code
from tqdm.notebook import tqdm
Error
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-70-e86f188036ca> in <module>
----> 1 from tqdm.notebook import tqdm
ModuleNotFoundError: No module named 'tqdm.notebook'
tqdm
is already installed in my environment but still I face this issue. How to fix this?
Try to upgrade your tqdm
packgage may be it is not containing that package
pip install tqdm --upgrade
or
pip install tqdm -U