使用教程參考:http://www.cnblogs.com/TankXiao/archive/2012/02/06/2337728.html#request
一、首先,在Mac下安裝fiddler時,需要先安裝mono
mono下載地址:https://www.mono-project.com/download/stable/

安裝完成后,執行命令:
/Library/Frameworks/Mono.framework/Versions/<Mono Version>/bin/mozroots --import --sync
<Mono Version>:為mono版本號,可以cd進入查看
安裝完成成功后,提示如下:
Downloading from 'https://hg.mozilla.org/releases/mozilla-release/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt'... Importing certificates into user store... 150 new root certificates were added to your trust store. Import process completed.
二、其次,下載fiddler
在fiddler官方網站下載,地址:https://www.telerik.com/download/fiddler
下載完成后,把.zip包解壓縮到非中文路徑下。
運行輸入命令行:
mono Fiddler.exe
但是提示報錯:
================================================================= Got a SIGSEGV while executing native code. This usually indicates a fatal error in the mono runtime or one of the native libraries used by your application. =================================================================
參考網址解決問題:https://blog.csdn.net/u010789532/article/details/80771807
# 本地路徑
cd Desktop/mine/install/fiddler-mac/ # 運行Fiddler mono --arch=32 Fiddler.exe
啟動時間較長,多等一會。
啟動成功!!!

