こんにちは、Aireです。
今回はmacOS上にHomebrewをインストールまたはアンインストールするための方法(コマンド)を簡単に記載します。
目次
Homebrewをインストールする
Homebrewのホームページに記載されているコマンド(下記)を実行し、「Return/Enter」キーを入力すると、Homebrewをインストールできます。
<実行コマンド>
1 |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" |
<実行例>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" (…途中省略…) Press RETURN/ENTER to continue or any other key to abort: (…途中省略…) ==> Installation successful! (…途中省略…) ==> Next steps: - Run these two commands in your terminal to add Homebrew to your PATH: (echo; 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 |
インストール後、実行結果のNext steps欄に表示されるコマンドを追加で実行します。
1 2 |
$ (echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/<ユーザー名>/.zprofile $ eval "$(/opt/homebrew/bin/brew shellenv)" |
Homebrewをアンインストールする
HomebrewのホームページのFAQに「To uninstall Homebrew, run the uninstall script from the Homebrew/install repository.」とあるように、リンク先(GitHub)にアンインストール方法が記載されています。
GitHub – Homebrew/install: 📥 Homebrew (un)installer
📥 Homebrew (un)installer. Contribute to Homebrew/install development by creating an account on GitHub.
リンク先のGitHubに記載されているコマンド(下記)を実行し、「y」キーを入力すると、Homebrewをアンインストールできます。
<実行コマンド>
1 |
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)" |
<実行例>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)" (…途中省略…) Are you sure you want to uninstall Homebrew? This will remove your installed packages! [y/N] y ==> Removing Homebrew installation... ==> Removing empty directories... Password: ==> /usr/bin/sudo /usr/bin/find /opt/homebrew/bin /opt/homebrew/etc /opt/homebrew/include /opt/homebrew/lib /opt/homebrew/opt /opt/homebrew/sbin /opt/homebrew/share /opt/homebrew/var /opt/homebrew/Frameworks -name .DS_Store -delete ==> /usr/bin/sudo /usr/bin/find /opt/homebrew/bin /opt/homebrew/etc /opt/homebrew/include /opt/homebrew/lib /opt/homebrew/opt /opt/homebrew/sbin /opt/homebrew/share /opt/homebrew/var /opt/homebrew/Frameworks -depth -type d -empty -exec rmdir {} ; ==> Homebrew uninstalled! The following possible Homebrew files were not deleted: /opt/homebrew/etc/ /opt/homebrew/share/ /opt/homebrew/var/ You may wish to remove them yourself. |
アンインストール後、実行結果に削除されなかったファイルが表示されている場合はそれらを削除します。
以上、ここまで。