Skip to content

mac os zsh: command not found: pip (m1)

背景

在macbook pro 14 M1中运行之前编写的Python程序,发现python3python,pip3均可以使用,但是pip命令不存在。

问题及现象

使用pip3安装依赖或者python -m pip install 安装依赖,显示成功,但是运行程序则还是报错。

Traceback (most recent call last):
  File "/Users/xxxx/python/mapleSpeech/speech.py", line 4, in <module>
    from paddlespeech.cli.asr.infer import ASRExecutor
ModuleNotFoundError: No module named 'paddlespeech

检查发现pip无法运行。

➜  ~ pip
zsh: command not found: pip

解决办法

# 先执行
➜  ~ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
# 在执行
➜  ~  python3 get-pip.py 

之后在运行pip install 安装则正常运行程序。

发表评论

电子邮件地址不会被公开。 必填项已用*标注