记录一下,如何在mac中使用hugo,步骤如下。

1,安装brew(镜像安装脚本,中国科学技术大学所提供的 Homebrew 镜像服务),打开mac自带的终端,复制黏贴以下
/usr/bin/ruby -e “$(curl -fsSL https://cdn.jsdelivr.net/gh/ineo6/homebrew-install/install)”

2,最后出现 Installation successful!或者Checking out files: 100%, done.说明brew安装成功

3,切记在终端执行环境变量设置!如已执行过请忽略。执行下面2条命令(将 Homebrew 到 PATH 中),
(1)echo ‘eval “$(/opt/homebrew/bin/brew shellenv)”‘ >> /Users/miudafeng/.zprofile
(2)eval “$(/opt/homebrew/bin/brew shellenv)”

4,在终端输入brew查看是否安装成功

5,安装Hugo,一条命令即可,brew install Hugo,安装成功后输入Hugo version查看版本号。

6,建立自己的博客站点,Hugo new site blogname。

7,终端cd blogname进入到自己所创建的博客目录,可以接下来操作hugo和hugo server。

mac里面我使用的是Mweb编辑markdown文件。