由於版本兼容問題,Mac下Graphviz之前一直裝的是低版本的2.36。高版本的安裝方法如下:
1、log in & download Xcode an Xcode Command Line Tools from
https://developer.apple.com/downloads/
install Xcode and the Xcode Command Line Tools
2、agree to Xcode license in terminal:
sudo xcodebuild –license
3、get MacPorts pkg installer for your version of osx from
https://www.macports.org/install.php#installing
install MacPorts for your version of osx
4、in terminal:
sudo port -v selfupdate
5、install graphviz via MacPorts. in terminal:
sudo port install graphviz-gui
installed gui application can be found here: /Application/Macports/Graphviz.app
相關MacPorts的命令說明可以看: http://blog.csdn.net/moliyll/article/details/7898600
我這里由於有之前的版本的 graphviz, 安裝時候提示:
$ sudo port install graphviz-gui
---> Computing dependencies for graphviz-gui
---> Cleaning graphviz-gui
---> Scanning binaries for linking errors
Warning: Error parsing file /Applications/MacPorts/Graphviz.app/Contents/MacOS/Graphviz: Error opening or reading file
---> No broken files found.
解決方法:
先用 AppCleaner 清除之前的安裝文件。
再用 sudo port uninstall graphviz-gui 卸載之前的安裝依賴。
然后重新安裝就可以安裝成功了 2.40.1。
另外在做安裝時,提示我要設置一些默認python 。 執行下面任何一個命令都可以完成。
---> Some of the ports you installed have notes:
python27 has the following notes:
To make this the default Python or Python 2 (i.e., the version run by the
'python' or 'python2' commands), run one or both of:
sudo port select --set python python27
sudo port select --set python2 python27
##############################################################
# IF YOU ARE USING PYTHON FROM THE TERMINAL, PLEASE INSTALL:
# py27-readline
# TO AVOID A LIBEDIT / PYTHON INTERACTION ISSUE.
# REF: https://trac.macports.org/ticket/48807
##############################################################
這種方式安裝完成后, GUI和命令行都是升級到了 2.40.1 版本了。
$ dot -V
dot - graphviz version 2.40.1 (20161225.0304)
參考: