python-3.x 软件包未安装

k5ifujac  于 2023-04-08  发布在  Python
关注(0)|答案(1)|浏览(177)

我想做一个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
  ~~~
eh57zj3b

eh57zj3b1#

Windows

这与此问题最相关。尝试python -m pip install ...
如果这不起作用,你是否在安装python时选中了“安装PIP”(这是默认设置)的复选框,或者你是否改变了它?
如果是,则将pip添加到路径中。

Linux发行版

这一部分是为将来的读者准备的。在Linux上,你必须单独安装pip
安装python后:

sudo apt install python3

用途:

sudo apt install pip3

然后你可以通过使用pip3来使用pip

相关问题