Home > Blockchain >  python install command prompt
python install command prompt

Time:09-27

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

CodePudding user response:

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.

CodePudding user response:

Try:

 python -m pip install tqdm

Although I've not used that tqdm before.

  • Related