在 M1 MacBook Pro 中安装 libjpeg 时如何修复错误?

时间:2021-07-15 20:44:09

标签: python macos terminal homebrew arm64

我正在使用命令在 arm64 终端中安装 libjpeg

brew install libjpeg

但它给了我这个错误:

Error: Cannot install in Homebrew on ARM processor in Intel default prefix (/usr/local)!
Please create a new installation in /opt/homebrew using one of the
"Alternative Installs" from:
  https://docs.brew.sh/Installation
You can migrate your previously installed formula list with:
  brew bundle dump

什么意思?以及如何解决它? 提前谢谢你们。

1 个答案:

答案 0 :(得分:1)

在终端中运行此命令:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

在终端运行:

touch .zshrc

用 TextEdit 打开它进行编辑(它是一个隐藏文件,所以 shift + command + . 将取消隐藏它)

在 .zshrc 末尾添加这一行:

export PATH=/opt/homebrew/bin:$PATH

在终端中运行它以使其可用:

source ~/.zshrc

检查以确保它有效:

brew help