Contributed by: akira on 2011年11月8日(火) 15:33 JST
Last modified on
node.js のインストール
$ cd ~/work/opensource
$ wget http://nodejs.org/dist/v0.6.0/node-v0.6.0.tar.gz
$ tar xzf node-v0.6.0.tar.gz
$ cd node-0.6.0
$ ./configure --prefix=/opt/node
$ make -j2
$ sudo make install
$ echo 'export NODE_PATH=/opt/node:/opt/node/lib/node_modules' >> ~/.bashrc
$ echo 'export PATH=$PATH:/opt/node/bin' >> ~/.bashrc
$ source ~/.bashrc
npm等の設定の関係で、
$ sudo chgrp -R kei /opt/node
$ sudo chmod -R g+w /opt/node
npmのインストール
$ curl http://npmjs.org/install.sh |sh
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 7184 100 7184 0 0 9933 0 --:--:-- --:--:-- --:--:-- 20179
tar=/bin/tar
version:
tar (GNU tar) 1.23
Copyright (C) 2010 Free Software Foundation, Inc.
使用許諾 GPLv3+: GNU GPL version 3 またはそれ以降 <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
[参考訳]
これはフリーソフトウェアです. 変更と再配布は自由です.
法律で認められる範囲で「無保証」です.
作者: John Gilmore, Jay Fenlason.
fetching: http://registry.npmjs.org/npm/-/npm-1.0.104.tgz
0.6.0
1.0.104
cleanup prefix=/opt/node
All clean!
/opt/node/bin/npm -> /opt/node/lib/node_modules/npm/bin/npm-cli.js
/opt/node/bin/npm_g -> /opt/node/lib/node_modules/npm/bin/npm-cli.js
/opt/node/bin/npm-g -> /opt/node/lib/node_modules/npm/bin/npm-cli.js
npm@1.0.104 /opt/node/lib/node_modules/npm
It worked