开始
安装nodejs
1
2curl -sL https://deb.nodesource.com/setup_12.x | bash -
apt-get install nodejs -y查看node和npm版本
1
2node -version #显示版本号
npm -version #显示版本号安装git
1
apt-get git -y
查看git版本
1
git --version #显示版本号
npm更换国内源(这里使用的是淘宝源)
1
2npm config set registry https://registry.npm.taobao.org
npm config list安装hexo
1
npm install hexo-cli -g
初始化hexo项目
1
hexo init myblog
安装默认插件
1
2cd myblog
npm installhexo博客生成
1
hexo server