安装 Hexo 并使用 Yun 主题

在这篇博客中,我们将介绍如何安装 Hexo 并使用 Yun 主题来创建您的博客。

安装 Hexo 并初始化您的博客

1
2
3
4
5
npm install hexo-cli -g
hexo init your-blog
cd your-blog
npm install
hexo server

如果在安装过程中遇到 “npm ERR! reason: certificate has expired” 的问题,您可以尝试清除 npm 缓存并设置 strict-ssl 为 false:

1
2
npm cache clean --force
npm config set strict-ssl false

安装渲染器

1
npm install hexo-render-pug hexo-renderer-stylus --save

安装 Yun 主题

1
npm install hexo-theme-yun@latest

启用主题

您需要修改 Hexo 站点配置文件 _config.yml,将主题设置为 Yun 主题。找到 theme 字段,将其值设置为 hexo-theme-yun

1
theme: hexo-theme-yun

完成以上步骤后,您可以重新启动 Hexo 服务器,并访问您的博客以查看新主题的效果。