參考Chisel官方:https://github.com/facebook/chiselgit
須要安裝homebrew環境的支持github
brew update brew install chisel
(其實第一個命令brew update能夠不用執行,直接install就能夠,我是在update命令後無任何反應的狀況下,直接install的)shell
執行完以後,會出現下面的結果:xcode
==> Downloading https://github.com/facebook/chisel/archive/1.1.0.tar.gz ######################################################################## 100.0% ==> Caveats Add the following line to ~/.lldbinit to load chisel when Xcode launches: command script import /usr/local/opt/chisel/libexec/fblldb.py ==> Summary 🍺 /usr/local/Cellar/chisel/1.1.0: 18 files, 112K, built in 7 seconds
能夠看到,須要在~/ .lldbinit 文件中添加一行命令。ui
若是本地沒有該文件,須要先建立該文件:spa
touch ~/.lldbinit
而後,將命令command script import /usr/local/opt/chisel/libexec/fblldb.py添加到~/ .lldbinit中。code
最後,重啓xcode就可使用了,具體命令可使用help命令查看。homebrew