标签:
1.安装node.js(http://nodejs.org/),安装git(http://git-scm.com/)
2.所有必备的应用程序安装完成后,即可使用 npm 安装 Hexo。
打开git bash窗口,执行 $ npm install -g hexo-cli
3.在电脑中建立一个名字叫「Hexo」的文件夹(比如我建在了D:\Hexo),然后在此文件夹中右键打开Git Bash。执行下面的命令
$ hexo init
[info] Copying data
[info] You are almost done! Don‘t forget to run `npm install` before you start b
logging with Hexo!
4.Hexo随后会自动在目标文件夹建立网站所需要的文件。然后按照提示,运行 npm install(在 /D/Hexo下)
npm install
5.执行之后会在D:\Hexo目录中安装 node_modules。
6.Start the server
$ hexo server
[info] Hexo is running at http://localhost:4000/. Press Ctrl+C to stop.
7.表明Hexo Server已经启动了,在浏览器中打开 http://localhost:4000/,这时可以看到Hexo已为你生成了一篇blog。
你可以按Ctrl+C 停止Server。
参考:
http://www.cnblogs.com/zhcncn/p/4097881.html
https://hexo.io/zh-cn/docs/index.html
标签:
原文地址:http://www.cnblogs.com/luoxiaolei/p/5285781.html