标签:
因为Linuxmint 和 Ubuntu 同属 Debian系的Linux,而且Linuxmint是建立在Ubuntu的基础上的,所以Ubuntu下的命令和包,Linuxmint同样适用。
1. 安装python 2.6版或者更高(linuxmint默认都已安装,可以在terminal中使用 pyhton -v 命令查看python版本)。
2. 安装其他依赖包: (具体需要什么依赖可以去git上去找,https://github.com/lookphp/node)
Prerequisites:
gcc
and g++
4.8 or newer, orclang
and clang++
3.4 or newersudo apt-get install g++ clang curl libssl-dev apache2-utils
sudo apt-get install git-core
git clone git://github.com/joyent/node.git
wget http://nodejs.org/dist/v0.6.14/node-<版本号>.tar.gz
mkdir ~/local ./configure –prefix=$HOME/local/node make make install echo ‘export PATH=$HOME/local/node/bin:$PATH’>>~/.profile echo ‘export NODE_PATH=$HOME/local/node:$HOME/local/node/lib/node_modules’>>~/.profile source ~/.profile
tar zxvf node-<版本号>.tar.gz
cd node-<版本号>
./configure --prefix=$HOME/local/node make //make的时间根据电脑的配置和安装需要,时间不同,执行完make,之后需要的就是等待~等待~,千万别再乱动其他了 sudo make install echo ‘export PATH=$HOME/local/node/bin:$PATH’>>~/.profile echo ‘export NODE_PATH=$HOME/local/node:$HOME/local/node/lib/node_modules’>>~/.profile source ~/.profile
sudo gedit /etc/profile
export PATH=”$HOME/local/node/bin:$PATH”
export NODE_PATH=”$HOME/local/node:$HOME/local/node/lib/node_modules”
node –v
curl http://npmjs.org/install.sh | sh
npm –v
var http = require(‘http‘); var server = http.createServer(); // 为request事件绑定处理函数 // 也可以使用server.addListener server.on(‘request‘, function(req, res){ res.writeHead(200,{‘Content-Type‘:‘text/plain‘}); res.write(‘hello world‘); console.log(‘hello world‘); res.end(); }); server.listen(1337,‘127.0.0.1‘); console.log(‘Server running at http://127.0.0.1:1337/‘);
标签:
原文地址:http://www.cnblogs.com/lookphp/p/5150656.html