Mac 安装 WePY

安装方式

第一步:安装 NodeJS + Yarn

如果电脑有 Homebrew,直接执行

1
2
brew update
brew install yarn

此命令会自动安装 Yarn 和 NodeJS

问题一:安装 Homebrew

按照 官网 所述,执行下面的命令

1
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

注意:由于整个安装过程依托于 Github,因此国内无代理情况下速度可能会较慢,这时可以考虑 给终端环境添加代理

问题二: brew update 速度慢

类似于问题一,开启代理情况下可以忽略。

如未开启代理也不想开启代理,可以考虑将 brew 源换为国内源

本文所述源采用 清华大学 Homebrew 源清华大学 Homebrew-bottles 源,也可按照文中所述方法进行安装,下文所述仅为搬运

安装 Homebrew 源

1
2
3
4
5
6
7
8
9
10
11
12
13
cd "$(brew --repo)"
git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git

cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git

cd "$(brew --repo)/Library/Taps/homebrew/homebrew-science"
git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-science.git

cd "$(brew --repo)/Library/Taps/homebrew/homebrew-python"
git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-python.git

brew update

安装 Homebrew-bottles 源

1
2
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles' >> ~/.bash_profile
source ~/.bash_profile

问题三:不想或不能使用 brew 安装

首先安装 NodeJS,建议安装 8.x 版本,此安装过程类似于安装普通 Mac 软件,故不再赘述

然后安装 Yarn,在终端中执行 curl -o- -L https://yarnpkg.com/install.sh | bash

最后,将环境变量添加至 SHELL 配置文件:在配置文件最后一行添加 export PATH="$PATH:`yarn global bin`"

测试是否成功安装:在终端中执行 yarn --version,如果出现版本号则安装成功

查看 SHELL 配置文件路径:请参考 这篇文章 的有关部分

上述命令中如果出现了命令不存在或类似提示,可以先尝试关掉终端再打开来执行

第二步:配置 Yarn 源为国内源

如果已经配置了代理,这步可跳过

重启终端,执行下面的命令将 yarn 源改为淘宝源

1
yarn config set registry 'https://registry.npm.taobao.org'

第三步:安装 WePY

重启终端,执行下面的命令

1
yarn global add wepy-cli

以下内容涉及到了具体项目,WePY 框架的安装截止在上面便已完成

针对项目配置 WePY

详细可参考 WePY 官方文档

第一步:下载或克隆项目
第二步:安装依赖
进入到项目目录,执行 yarn install 等待依赖安装完成
第三步:编译
进入到项目目录,执行 wepy build 来编译项目
第四步:使用微信开发者工具打开项目
使用微信开发者工具加载项目目录即可