无法在终端中安装prttsx3

时间:2020-06-18 04:28:52

标签: python terminal

我开始学习python,正在使用python 3.8.1并尝试安装它:

import pyttsx3

engine = pyttsx3.init()

engine.say("Testing")

engine.runAndWait()

但是当我在终端中输入pip install pyttsx3时,就像这样

-bash: pip: command not found

我正在使用MacOs Catalina 10.15.5

谢谢

1 个答案:

答案 0 :(得分:0)

使用setuptools安装pip

sudo easy_install pip

(我知道答案的上面部分对于klobucar来说是多余的,但是我还不能添加注释),所以这是Debian / Ubuntu上sudo: easy_install: command not found解决方案的答案:

sudo apt-get install python-setuptools

另外,对于python3,请使用easy_install3python3-setuptools

来自here