我想做一个AI机器人。
当我进入终端时,我输入pip install chatterbot
。它给出一个错误。它显示这个- pip:
The term 'pip' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that
the path is correct and try again.
At line:1 char:1
+ pip install chatterbot
+ ~~~
+ CategoryInfo : ObjectNotFound: (pip:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
~~~
1条答案
按热度按时间eh57zj3b1#
Windows
这与此问题最相关。尝试
python -m pip install ...
如果这不起作用,你是否在安装python时选中了“安装PIP”(这是默认设置)的复选框,或者你是否改变了它?
如果是,则将
pip
添加到路径中。Linux发行版
这一部分是为将来的读者准备的。在Linux上,你必须单独安装
pip
。安装python后:
用途:
然后你可以通过使用
pip3
来使用pip
。