我们使用Homebrew来安装他们。Homebrew是一款Mac上的基于Ruby的包管理器,可以理解为与Yum、Apt、Pecman类似即可。
1.安装Homebrew:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
2.安装dpkg和ldid
Dpkg是Debian的软件包。
Ldid是越狱祖师爷Saurik开发的一款二进制授权管理软件,可以对越狱应用进行SHA1运算生成授权,让软件包可以在iPhone上执行。
brew install dpkg ldid
3.安装Thoes
sudo Git clone --recursive https://github.com/theos/theos.git /opt/theos
4.把/opt/theos的权限改成你自己:
sudo chown $(id -u):$(id -g) /opt/theos
5.把theos的执行路径加入到环境变量之中,在~./bash_profile
先创建bash_profile
- 输入cd ~
- 创建.bash_profile
输入touch .bash_profile - 编辑.bash_profile文件
输入open -e .bash_profile
4.在打开文件中添加这两行
export THEOS=/opt/theos
export PATH=/opt/theos/bin/:$PATH - 保存文件,关闭.bash_profile
6.测试是否安装成功
cd到任意可执行目录,
输入nic.pl
New Instance Creator开始执行则已经安装成功。