So I've been trying to use the module named tqdm to add a progress bar in my program. However it seems to be installed but my terminal won't run it. It shows up in pip3 list command but doesn't work I'm on macOs using PyCharm and it also show that I have it up and running.
I've tried to reinstall python, from 3.12 to 3.10. Reinstall the module tqdm, switch the shebang, change how I import it.
Couple of questions to add more context to your question:
python -V
vspython3 -V
, same withpip
vspip3
)python3 -m pip install tqdm
instead ofpip3
to ensure you're using the appropriatepip
?These types of issues stem from the same sources, so your answers to the questions will help us debug it: