最終更新日: 2020-02-17
※以前運営していたブログで書いていた記事をリライトしています。
本記事ではMacbook Pro 2013 (macOS 10.14)で行なっています。
目次
1. XcodeとCommand Line ToolsのDL
下記のサイトから、自分のMacに合ったXcodeとCommand Line Toolsをダウンロードしてインストール。
401 Authorization Required
今回はXcode 10.3とCommand Line Tools (macOS 10.14) for Xcode 10.3をダウンロードした。

2. Homebrewのインストール
ターミナルで下記のコマンドを実行。
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null
brew install dpkg ldid
途中でパスワードを要求されるので入力。
3. theosのインストール
ターミナルで下記のコマンドを実行。
sudo git clone --recursive https://github.com/theos/theos.git /opt/theos
4. SDKのダウンロード
ターミナルで下記のコマンドを実行。
sudo rm -rf /opt/theos/sdks
sudo git clone --recursive https://github.com/MTACS/sdks.git /opt/theos/sdks
5. エイリアスの設定
ホームディレクトリの.bash_profileにエイリアスの設定を書き込む。
touch ~/.bash_profile
echo -e "alias theos=/opt/theos/bin/nic.pl\nexport THEOS=/opt/theos/" >> ~/.bash_profile
killall Terminal
6. theosの実行
ターミナルを開いて「theos」と入力し、実行できるか確認。

参考文献
- 【脱獄アプリ開発】第11回新しいtheosのインストールと簡単なTweakの作成方法
https://ichitaso.com/ios-development/how-to-install-theos/
連絡先
何かあればコメントや下記の連絡先に連絡ください。
コメント
Nicely put, Cheers.
Wow, that’s what I was exploring for, what a information! present here at this blog, thanks admin of
this website.
I’m glad to hear that.
Just want to say your article is as astonishing. The clearness
in your post is simply cool and i can assume you’re an expert on this subject.
Fine with your permission let me to grab your RSS feed to keep updated
with forthcoming post. Thanks a million and please keep up the rewarding work.
Right now it sounds like Movable Type is the best blogging platform available
right now. (from what I’ve read) Is that what you’re using on your blog?
No. I’m not using.
I’m using WordPress (Theme: Cocoon)
「zsh: command not found: theos」って言われます。。。
bash_profileではなくzshrcを使うからです
echo -e “alias theos=/opt/theos/bin/nic.pl\nexport THEOS=/opt/theos/” >> ~/.bash_profile
の部分を
echo -e “alias theos=/opt/theos/bin/nic.pl\nexport THEOS=/opt/theos/” >> ~/.zshrc
にすれば動きます