No module named 'tqdm'
You need to install tqdm module, you can do it by using python pip.
pip install tqdm
for more info tqdm
For Python 3 as you specified, you use the pip3
command, like so...
pip3 install tqdm
For Python 2, you use pip
command, like so...
pip install tqdm
Hope this helps!