Hexo折腾过程 01#安装git 下载地址:https://git-scm.com/downloads
02#安装Node.js 下载地址:https://nodejs.org/en/download/
03#安装Hexo 进入Git Bash,在某个地方创建一个目录,比如E:/hexo
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 cd /e/hexo npm install -g cnpm --registry=https://registry.npm.taobao.org cnpm install hexo-cli -g hexo init cnpm install cnpm install hexo-server --save cnpm install hexo-deployer-git --save cnpm install hexo-generator-index --save cnpm install hexo-generator-archive --save cnpm install hexo-generator-tag --save cnpm install hexo-generator-feed --save cnpm install hexo-generator-sitemap --save cnpm install hexo-generator-baidu-sitemap --save cnpm install hexo-related-popular-posts --save #cnpm install hexo-generator-searchdb --save #cnpm install hexo-algolia --save #cnpm install hexo-asset-image --save #cnpm instal hexo-util --save-dev #cnpm install hexo-leancloud-counter-security --save 04#安装Next主题 1 2 git clone https://github.com/theme-next/hexo-theme-next.git themes/next git clone https://github.com/theme-next/theme-next-algolia-instant-search themes/next/source/lib/algolia-instant-search 05#配置Hexo 配置文件:_config.yml 官方文档:https://hexo.io/zh-cn/docs/ 个人喜好配置:
...