python 安装命令提示符
python install command prompt
当我尝试在 python 中安装 tqdm 包时出现此错误:
>>> pyp install tqdm
File "<stdin>", line 1
pyp install tqdm
^
SyntaxError: invalid syntax
>>>
我也尝试在 cmd(命令提示符)中执行此操作,但仍然无效
你的安装命令好像有误,试试这个:
pip3 install tqdm
如果您没有为 windows 安装 pip3 here is a guide。
尝试:
python -m pip install tqdm
虽然我以前没有用过那个tqdm。
当我尝试在 python 中安装 tqdm 包时出现此错误:
>>> pyp install tqdm
File "<stdin>", line 1
pyp install tqdm
^
SyntaxError: invalid syntax
>>>
我也尝试在 cmd(命令提示符)中执行此操作,但仍然无效
你的安装命令好像有误,试试这个:
pip3 install tqdm
如果您没有为 windows 安装 pip3 here is a guide。
尝试:
python -m pip install tqdm
虽然我以前没有用过那个tqdm。