Cloud-Computing-Course hw9

博客框架:Hexo
实验环境:WSL-Ubuntu18

安装步骤

安装node.js

1
2
3
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt install nodejs
node --version

安装hexo

1
2
3
4
5
6
7
8
# 安装
sudo npm install hexo-cli -g
hexo -v

# 创建项目
hexo init hexo-blog
cd hexo-blog/
npm install

Reference: https://zhuanlan.zhihu.com/p/514982831