Node
1.下载
wget https://nodejs.org/dist/v8.11.1/node-v8.11.1.tar.gz
2.解压
tar -xf node-v8.11.1.tar.gz
进入文件夹:
cd node-v8.11.1
3.编译
./configure
假如出现下面的提示:
WARNING: C++ compiler too old, need g++ 4.8 or clang++ 3.4 (CXX=g++)
请更新一下GCC。
更新完 GCC 后。
继续执行编译:
./configure
make && make install