Dolphin的博客

Fedora 20 安装NodeJs

安装环境:

  • Fedora 20 i386

  • nodejs 6.7.0

安装

使用Hexo写博客需要安装NodeJs,更新系统

1
yum update -y

安装GCC编译环境

1
yum install g++ curl openssl openssl-devel make gcc-c++ glibc-devel -y

下载NodeJS

1
2
3
4
mkdir /root/temp ; cd /root
wget http://nodejs.org/dist/node-latest.tar.gz
tar -xvpzf node-latest.tar.gz
cd node-v*

编译安装,编译安装的时间较长,需要耐心等待,编译大概在15分钟左右。

1
2
./configure
make install

安装NPM

1
curl http://npmjs.org/install.sh | sh

查看安装的NodeJs版本:

1
node --version

常见问题

/usr/bin/env: ‘python’: No such file or directory
1
dnf install python -y
g++: Command not found
1
dnf install "gcc-c++.x86_64" -y