Hexo Blog安装
First Post:
Last Update:
Word Count:
Read Time:
Last Update:
Word Count:
227
Read Time:
1 min
安装Git&Node.js
Git:https://git-scm.com/ Node.js:https://nodejs.org/en/安装Hexo
安装完上面的Git和Node.js后,输入下面的命令安装Hexo1
$ npm install -g hexo-cli
1
2$ hexo init
或$ hexo init <想要用于存放hexo的目录>
然后输入
1
$ cd <存放hexo的目录>
1
$ npm install
命令
新建一篇文章。如果没有设置 layout 的话,默认使用 _config.yml 中的 default_layout 参数代替。如果标题包含空格的话,请使用引号括起来。
1
$ hexo new [layout] <文章标题>
1
2$ hexo generate
缩写:$ hexo g1
$ hexo server
缩写:1
$ hexo s
1
2$ hexo deploy
缩写:$ hexo d1
$ hexo clean