搭建主题为 anzhiyu 的 hexo 博客

封面

本文的操作均在 windows 系统下运行。

安装 hexo

  1. 下载 Git,阿里镜像链接
  2. 下载 Node.js,官网链接
  3. 在一个空的文件夹右键点击 Open Git Bash here。
  4. 运行 npm install -g hexo-cli 如果因为网络问题运行失败,请运行 npm config set registry https://registry.npmmirror.com 后重新运行 npm install -g hexo-cli
  5. 运行 hexo init 接着运行 npm install
  6. 运行 hexo s 然后在浏览器打开 http://localhost:4000 就可以查看初始的博客了。

注:CTRL+C 停止博客。

安装 anzhiyu 主题

  1. 打开 Open Git Bash here。
  2. 运行 git clone -b main https://github.com/anzhiyu-c/hexo-theme-anzhiyu.git themes/anzhiyugit clone -b main https://ghproxy.com/https://github.com/anzhiyu-c/hexo-theme-anzhiyu.git themes/anzhiyu,然后运行 npm install hexo-renderer-pug hexo-renderer-stylus --save
  3. 打开博客目录的 _config.yml 文件。
  4. 找到 theme: landscapelandscape 改成 anzhiyu,注意 theme: 后面有个空格。
  5. 在博客目录新建文件 _config.anzhiyu.yml 然后打开 /themes/anzhiyu/_config.yml 复制里面的文字到 _config.anzhiyu.yml
  6. 之后运行 hexo s 然后在浏览器打开 http://localhost:4000 就可以看到效果了。

配置 _config.yml 文件

language: en 改为 language: zh-CNauthor: 后面写你的名字。
title: 后写你的博客的名字注意,如果改名后图片不加载,可能是因为某个特殊字符如 '
description: '' 在 ‘’ 里加入一句描述,什么都行,推荐加这是一个描述

配置 _config.anzhiyu.yml 文件请看 (2),没更新没有。

官方安装视频