Hexo博客搭建
#初衷:
搭建博客的目的是为了记录学习,因为之前的一次失误导致了本可以记录电脑的重要笔记都丢失了。
##结果:
选择了Hexo博客,主题选择了Anatolo,也可以去主题仓库 ,自行选择。
搭建Hexo:
首先安装node.js、npm ,并配置环境变量。若出现如下图所示,即可成功。
进入Hexo,依次终端输入
1
2
3
4
5npm install hexo-cli -g
hexo init blog
cd blog
npm install
hexo server点击访问,若能成功,则搭建成功。若中途报错,建议更换网络或者配置国内源。
1
2npm config set registry https://registry.npm.taobao.org
npm config get registryPS:若还报错建议安装 cnpm,然后使用cnpm 代替上面的npm安装命令。eg: cnpm install xxx
1
npm install -g cnpm --registry=https://registry.npmmirror.com
配置主题Anatolo
- 进入Anatolo,然后进入终端:
1
2git clone https://gitee.com/Lhcfl/hexo-theme-anatolo.git themes/Anatolo
#或者直接下载主题zip包解压至主题目录下,重命名为Anatolo - 安装依赖
1
2npm install hexo-renderer-pug --save
npm install hexo-renderer-stylus --save - 修改配置
1
2
3
4
5
6cd blog/themes/Anatolo/
mv _config.example.yml _config.yml
cd /blog
vim _config.yml
#搜索替换以下内容
theme: Anatolo - 更新5.具体主题配置可参考官网
1
git pull origin master
发布Github
PS:发布GitHub可参考CodeSheep
- 本文标题:Hexo博客搭建
- 本文作者:白也
- 创建时间:2022-12-10 13:13:09
- 本文链接:https://bm4578.github.io/2022/12/10/Hexo博客搭建/
- 版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!
评论