一、环境搭建
1 nodejs
源码地址
sudo apt install build-essential # 内含gcc g++ make等全家桶
git clone git://github.com/nodejs/node.git # 下载源码
cd node
sudo ./config
sudo make && make install # 编译
node -v # 查看是否编译成功
二、遇见的问题
问题一:fatal: unable to access ‘https://github.com/PanJiaChen/vue-element-admin.git
将https改为git即可
git clone https://github.com/PanJiaChen/vue-element-admin.git
改成
git clone git://github.com/PanJiaChen/vue-element-admin.git