blog搭建

从头开始使用hexo的完整流程

2016-04-07  本文已影响94人  gzp1124
  1. 没有使用过hexo的,从头开始搭建。

  2. 在github上clone下来别人搭好的hexo,只需要在新机器上安装hexo等的。

npm install hexo-generator-index --save
npm install hexo-generator-archive --save
npm install hexo-generator-category --save
npm install hexo-generator-tag --save
npm install hexo-server --save
npm install hexo-deployer-git --save
npm install hexo-deployer-heroku --save
npm install hexo-deployer-rsync --save
npm install hexo-deployer-openshift --save
npm install hexo-renderer-marked@0.2 --save
npm install hexo-renderer-stylus@0.2 --save
npm install hexo-generator-feed@1 --save
npm install hexo-generator-sitemap@1 --save

检查是否真的安装好了:

vpm -v
node -v
hexo
如果vpm和node都安装了,hexo提示not found的话,就是hexo的环境变量没有配置,配置即可
window的配置太简单了,mac的配置稍微麻烦点

mac配置hexo有好几种办法我用的如下:
1.打开命令行创建 .bash_profile文件(可以先执行第二步,如果 .bash_profile文件不存在再执行第一步)
2.编辑 .bash_profile文件
3.路径之间用冒号:分隔开(:/usr/local/lib/node_modules/hexo/bin)
4.保存退出,hexo可以使用了

如果在使用过程中提示那个插件找不着了,再对应的安装哪个插件就行。

正常使用如下:

上一篇下一篇

猜你喜欢

热点阅读