hexo手动安装

看网上的文档都是npm install方式安装,没有手动安装的文档,文档讲述手动安装配置hexo的过程。

1,安装前需确认node和git两个依赖是否已经安装。

2,从git上获取hexo程序。

git clone http://github.com/hexojs/hexo.git

3,进入hexo目录,安装之。

cd hexo

npm install -g

4,创建软连接

ln -s /opt/hexo/bin/hexo /usr/bin/hexo

5,创建博客目录

mkdir /opt/danteng

6,进入博客目录并初始化博客

cd /opt/danteng

hexo init

此时,博客安装完成,配置文件在_config.yml,修改完成后即可生成静态页面。

本文链接地址: https://danteng.org/how-to-install-hexo-manually/