hexo网站搭建教程-1.本地搭建

1.安装git

打开https://git-scm.com/downloads
点击Download for Windows
下载完打开exe程序,无脑下一步即可
安装完后,桌面右键-显示更多选项,出现Git Gui Here和Git Bash Here算安装成功
git安装成功
在安装hexo时只用Git Bash Here

2.安装Node.js

打开https://nodejs.org/zh-cn
点击下载左边的长期维护版
安装同样无脑下一步
安装完成后win+R打开cmd窗口
运行:
node -v
出现版本号代表安装成功
Node.js安装成功

3.安装hexo

在合适的地方创建文件夹
在文件夹根目录右键选择Git Bash Here
在GBH中逐条运行以下指令

1
npm install hexo-cli -g
1
hexo init blog
1
cd blog
1
npm install
1
hexo server

(skip:git中不可使用Ctrl+C和Ctrl+V)
或者可以访问hexo官网:https://hexo.io/zh-cn/index.html
随后便可看到本地版的个人博客地址:http://localhost:4000/
复制并在浏览器中打开
如果出现便代表本地博客安装成功
本地博客安装成功