中文 | English
yarn install
yarn start:enjoy
yarn make:enjoy
方法一:这是最直接简单的方法是去 releases 页面下载相应的安装文件。
如果你需要详细下载操作指导点这里
Tip
如果你是普通用户,并不想为本项目提供代码,按上面的操作就可以正常使用 Enjoy APP !
方法二:如果想要随时试用更新版本的话,请按一下步骤操作。
-
打开命令行工具 Terminal
-
安装 Homebrew(请参阅这篇文章:《从 Terminal 开始…》)
-
安装
nodejs
以及yarn
:brew install nvm nvm install 20.5.1 brew install yarn
-
设置 yarn 环境变量以及 Node.js 配置
export ELECTRON_MIRROR="https://npmmirror.com/mirrors/electron/" corepack enable
-
克隆此仓库至本地,而后安装、启动:
cd ~ mkdir github cd github git clone https://github.com/xiaolai/everyone-can-use-english cd everyone-can-use-english yarn install yarn start:enjoy
系统要求:Windows 10 22H2 以上版本、 Windows PowerShell 5.1 以上版本、互联网网络连接正常。
-
将鼠标移至任务栏的 “Windows 徽标” 上单击右键,选择 “PowerShell”
tips 1 :在最新的 Windows 11 上,你看不到 “PowerShell” 选项,只有 “终端”
tips 2 :不能用管理员权限运行 PowerShell ,否则会导致 Scoop 安装失败
-
在弹出的 PowerShell 窗口中依次执行运行以下命令,安装Scoop:
# 设置 PowerShell 执行策略 Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser # 下载安装脚本 irm get.scoop.sh -outfile 'install.ps1' # 执行安装, --ScoopDir 参数指定 Scoop 安装路径 .\install.ps1 -ScoopDir 'C:\Scoop'
如果出现下面的错误:
irm : 未能解析此远程名称: 'raw.githubusercontent.com'
说明你的网络连接有问题,请自行研究解决:
-
安装 Nodejs 和 yarn 以及其他依赖环境 :
scoop install nodejs scoop install git npm install yarn -g
-
设置 yarn 环境变量以及 Node.js 配置
$env:ELECTRON_MIRROR="https://npmmirror.com/mirrors/electron/" corepack enable
-
克隆此仓库至本地,而后安装 Enjoy APP:
cd ~ mkdir github cd github git clone https://github.com/xiaolai/everyone-can-use-english cd everyone-can-use-english yarn install
出现
“YN0000: · Done …… ”
类似字样说明安装成功! -
运行 Enjoy APP ,在终端执行下列命令:
yarn start:enjoy
更新并使用最新版本的Enjoy:
-
将仓库最新内容拉取到本地,在命令行工具中执行:
git pull
结果显示为:
Already up to date.
若非如此,那么意味着代码有所更新,那么就要运行以下命令:
yarn install
-
运行Enjoy APP:
yarn start:enjoy