每次换电脑都得重新安装所有的环境和软件,为方便日后再次安装,特此记录。
1、安装 Homebrew
直接打开终端并输入以下命令
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
2、安装 dpkg 和 ldid
brew install dpkg ldid
3、安装 Theos
把 Theos 安装在 /opt/theos 目录下
sudo git clone --recursive https://github.com/theos/theos.git /opt/theos
把 /opt/theos 的权限改为自己
sudo chown $(id -u):$(id -g) /opt/theos
把theos的执行路径加入到环境变量之中,在 〜./ bash_profile 中加上这么两句,如果没有 ./bash_profile 文件,那么就用 vim 编辑来创建一个
vim .bash_profile
并且用编辑模式在里面添加两行
export THEOS =/opt/theos
export PATH =/opt/theos/bin/:$PATH
4、验证时否安装成功
cd 到任意可执行目录输入以下命令
nic.pl
安装成功现实如下图:参考文章链接:
http://bbs.iosre.com/t/tutorial-install-the-latest-theos-step-by-step/2753
https://github.com/theos/theos/wiki/Installation