Last active
August 29, 2015 13:56
-
-
Save kamiyaowl/8888907 to your computer and use it in GitHub Desktop.
nodebrewでnode.js環境構築
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$curl -L git.io/nodebrew | perl - setup | |
#export ~~~を追記するようにって出るから.zshrcに追記、sourceでリロード | |
$nodebrew install-binary v0.10.24 | |
$nodebrew use v0.10.24 | |
$node --version | |
v0.10.24 | |
$npm --v | |
1.3.21 | |
#g++入ってなくて死亡 | |
$sudo apt-get install g++ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment