M1 MacbookAirにもInkscapeをインストールしようとしたところ、Homebrewを使う必要があるようなのでHomebrewをインストールすることに。
インストール方法
ターミナルにコマンドを入力
実際のコマンドはこれを使う(公式からちゃんとコピーしたほうが良い)
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
ワーニング発生
インストールの途中でワーニングが出てNext stepsで解消してね!と表示。
Warning: /opt/homebrew/bin is not in your PATH. Instructions on how to configure your shell for Homebrew can be found in the 'Next steps' section below.
最後の方にNext stepsが表示されて、次のコマンドを打ってパスを通せとのこと。
==> Next steps: - Run these two commands in your terminal to add Homebrew to your PATH: echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/********/.zprofile eval "$(/opt/homebrew/bin/brew shellenv)" - Run brew help to get started - Further documentation: https://docs.brew.sh
ワーニングの解消
素直にコマンドを打ってみる。
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/********/.zprofile eval "$(/opt/homebrew/bin/brew shellenv)"
動作チェック
これでターミナルを起動しなおせばHomebrewが使えるようになる。早速ちゃんとできているかバージョンチェック。
% brew --version Homebrew 3.3.13 Homebrew/homebrew-core (git revision 60087fd275f; last commit 2022-02-06)
ちゃんとインストールできてるね!これでアプリをインストールする時にターミナルで
brew install パッケージ名
とすればインストールできる。