MacOS+Hugo+阿里云|搭建个人网站

💻设备信息: MacBook Air M3 安装Homebrew Homebrew 是一款专门为macOS设计的开源软件包管理工具 下载最新的 GitHub 发行版 安装包,并进行安装 设置环境变量,打开终端输入如下: echo 'eval "$(/opt/homebrew/bin/brew shellenv)" #brew.idayer.com' >> ~/.zprofile eval "$(/opt/homebrew/bin/brew shellenv)" 参考自 Homebrew 中文网 验证安装完毕 brew --version 安装Hugo 使用 brew 下载Hugo相关文件 brew install hugo 创建博客文件夹(站点) hugo new site myblog --format yaml 下载 PaperMod 主题 cd myblog git clone https://github.com/adityatelange/hugo-PaperMod themes/PaperMod --depth=1 cd themes/PaperMod git pull 打开 myblog 文件夹下的 hugo.yaml,添加: theme: ["PaperMod"] 创建新文章 hugo new posts/first-blog.md 本地浏览,地址为: http://localhost:1313/ ...

March 6, 2025 · 2 min · 317 words · Me