1. 必须要安装 nodejs,git
2. 安装hexo
node install -g hexo
3. npm源的问题使在安装时有卡住的问题而导致无法安装,则需要更改npm的源
npm config set registry="http://registry.cnpmjs.org”
4. 执行完上面命令后,进入指定目录(自定义的项目目录)再执行
hexo init
5. 接着执行以下命令生成静态页面至public目录
hexo generate
6.在基目录下可以看到public目录下的所有文件
7. 可执行
hexo server
打开 http://localhost:4000就可以看到效果了。
至此hexo安装成功。
时间: 2024-10-24 12:59:07