0

I get this error when I try to install tqdm package in python:

>>> pyp install tqdm
  File "<stdin>", line 1
    pyp install tqdm
        ^
SyntaxError: invalid syntax
>>>

I tried also to do it in the cmd (commands prompt) but still doesn't work

Kaizendae
  • 853
  • 11
  • 24
LordFenny
  • 3
  • 5

2 Answers2

2

You seem to have the installation command wrong, try this:

pip3 install tqdm 

if you don't have pip3 installed here is a guide for windows.

Kaizendae
  • 853
  • 11
  • 24
0

Try:

 python -m pip install tqdm

Although I've not used that tqdm before.

CCCC
  • 241
  • 2
  • 10