3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Macにパッケージで入れたNode.jsをアンインストールする

Posted at

はじめに

こんにちは。インフラエンジニアレベル1のf_prgです。
nvmを使おうとしたところ、私のMacには既にpkgファイルからダウンロードしたnodeを使っていたので
削除した際の内容を紹介しようと思います。

アンインストール

コマンド

下記コマンドでアンインストールできます。

lsbom -f -l -s -pf /var/db/receipts/org.nodejs.pkg.bom \
| while read i; do
  sudo rm /usr/local/${i}
done
sudo rm -rf /usr/local/lib/node \
     /usr/local/lib/node_modules \
     /var/db/receipts/org.nodejs.*

まとめ

私は最初なんかWarningが出てきまして2回目で成功しました。
コマンドをコピペしてやったので、sudoでパスワード確認が通らなかった部分があったようです。
一回sudoをしてパスワード確認が入らないようにしておくとよいと思います。

参考資料・リンク

http://stackoverflow.com/questions/9044788/how-do-i-uninstall-nodejs-installed-from-pkg-mac-os-x

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?