M1 macにてnodebrewをinstallしようとしたらnodebrew にて詰まった話
M1 macにてnodebrewをinstallしようとしたら普通に詰まって大変だった(半泣き)
フロントエンドエンジニアには欠かせないNode.js
フロントエンドエンジニアを目指して日々勉強している身としては環境構築で戸惑ってしまうのは非常にロスだ。
こんなことが二度と起きないために書き記しておく。
Homebrewのインストール
% cd /opt
% sudo mkdir homebrew
% sudo chown $USER homebrew
% curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip 1 -C homebrew
# PATHを通す
% cd
% vim .zshrc
export PATH=/opt/homebrew/bin:/usr/local/bin:$PATH
% source .zshrc
% which brew
/opt/homebrew/bin/brew
# Xcodeのライセンスにagree
% sudo xcodebuild -license accept
sudo softwareupdate --install-rosetta
参考サイト
nodebrewのインストール
curl -L git.io/nodebrew | perl - setup
brew install -s nodebrew
参考サイト
Node.jsのインストール
nodebrew compile v15.4.0
参考サイト
おまけ(nodebrewのコマンド集)
インストール済みのバージョンを調べる
nodebrew ls
インストールできるバージョンを調べる
nodebrew ls-remote
インストールする
nodebrew install <version>
使用するバージョンを切り替える
nodebrew use <version>
nodebrew ls
nodebrew ls-remote
nodebrew install <version>
nodebrew use <version>
Author And Source
この問題について(M1 macにてnodebrewをinstallしようとしたらnodebrew にて詰まった話), 我々は、より多くの情報をここで見つけました https://qiita.com/pomufgd/items/a7266db07e3ca338fd74著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .