# 安装 Hexo
在安装 Hexo 之前,你需要安装以下两个工具:
如果您已经安装好以上两个工具,可以直接跳转至 安装 Hexo。
# 安装 Git
- Windows:下载并安装 git (opens new window).
- Mac:使用 Homebrew (opens new window), MacPorts (opens new window) :
brew install git
; 或下载 安装程序 (opens new window) 安装。 - Linux (Ubuntu, Debian):
sudo apt-get install git-core
- Linux (Fedora, Red Hat, CentOS):
sudo yum install git-core
- Linux (Arch 系列):
sudo pacman -S git
提醒
由于墙的原因,从上面的链接下载 git for windows 最好挂上一个代理,否则下载速度十分缓慢。也可以参考这个页面 (opens new window),收录了存储于百度云的下载地址。
提醒
如果你是 CentOS 服务器上的,可以直接使用 HexoOneClickInstallation (opens new window) 这个脚本快速安装 Hexo。
# 安装 Node.js
安装 Node.js 的最佳方式是使用 nvm (opens new window)。
cURL:
$ curl https://raw.github.com/creationix/nvm/v0.33.11/install.sh | sh
Wget:
$ wget -qO- https://raw.github.com/creationix/nvm/v0.33.11/install.sh | sh
安装完成后,重启终端并执行下列命令即可安装 Node.js。
$ nvm install stable
或者您也可以下载 安装程序 (opens new window) 来安装。
提醒
在中国大陆由于某些众所周知的网络原因,推荐使用淘宝 NPM 镜像 (opens new window):
npm install -g cnpm --registry=https://registry.npm.taobao.org
使用 cnpm install
来代替所有 npm install
指令。
# 安装 Hexo
安装好后,即可使用 npm 完成 Hexo 的安装。
$ npm install -g hexo-cli
关于评论
评论前请填好“昵称”、“邮箱”这两栏内容,否则不会收到回复,谢谢!