安装 Hexo 相当简单,只需要先安装下列应用程序即可:https://hexo.io/zh-cn/docs/setup
- Node.js (Node.js 版本需不低于 10.13,建议使用 Node.js 12.0 及以上版本) 推荐使用nvm
- Git
安装hexo
1 2 3
| $ npm config set registry https://mirrors.huaweicloud.com/repository/npm/ #修改成华为云镜像源 $ npm config get registry #验证命令,如果返回https://mirrors.huaweicloud.com/repository/npm/,说明镜像配置成功。 $ npm install -g hexo-cli
|
1 2 3 4 5
| $ hexo init <folder> $ cd <folder> $ npm install $ hexo g $ hexo s
|
修改配置文件_config.yml
1 2 3 4
| deploy: type: git repository: https://github.com/iword-one/iword-one.github.io.git branch: main
|
切记,在上传前面还要安装插件hexo-deployer-git
1
| npm install --save hexo-deployer-git
|
上传到github
git与github授权认证
相关文章:nvm 一个node版本管理工具