我开始学习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
谢谢
答案 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_install3
和python3-setuptools
。