在Windows中使用Hexo

  |  

摘要: 在 windows 中安装 Hexo 的过程

【对数据分析、人工智能、金融科技、风控服务感兴趣的同学,欢迎关注我哈,阅读更多原创文章】
我的网站:潮汐朝夕的生活实验室
我的公众号:潮汐朝夕
我的知乎:潮汐朝夕
我的github:FennelDumplings
我的leetcode:FennelDumplings


step1: 安装 git

参考 Windows操作集锦

step2: 安装 nodejs

nodejs下载页面 下载安装即可。

step3: 安装 hexo-cli

进入 cmd,执行以下命令:

1
npm install -g hexo-cli

step4: 安装依赖

1
2
rm -rf node_modules
npm install --force

启动项目

1
2
3
hexo clean
hexo g -c 8
hexo s

过程中可能发生报错:

1
hexo annot find module stylus

解法如下,也就是安装stylus,再安装stylus-loader:

1
2
npm install stylus --save-dev
npm install stylus-loader --save-dev

Share