macOS から fish shell をアンインストールしたので、その手順をご紹介します。
fish を使い始めてみたんですが、nvm 対応してなくて、今後もこういうことが増えそうだから、やっぱり zsh に戻すことにしました ?
nvmとfishそもそもnvmのドキュメントには下記のような記載があり、nvm はfishをサポートしていないのでサードパーティのツールを使うようにと案内されています。 (ドキュメントにはいくつかのツールが紹介されています)
chsh -s /bin/zsh
cat /etc/shells
# List of acceptable shells for chpass(1).
# Ftpd will not allow users to connect who are not using
# one of these shells.
/bin/bash
/bin/csh
/bin/dash
/bin/ksh
/bin/sh
/bin/tcsh
/bin/zsh
/opt/homebrew/bin/fish
sudo -e /etc/shells
して、
/opt/homebrew/bin/fish
を削除します。
brew install fish
which fish
fish not found
以上、macOS から fish shell をアンインストールした、現場からお送りしました。