MacOS – Does installing Wireshark via homebrew provide a graphical interface

homebrewmacoswireshark

I installed wireshark using homebrew with the command brew install wireshark. Everything seems to install fine and I can use dumpcap to capture packets but now I want to view them. Using a text editor like vi doesn't format some of the output very well due to an abundance of unreadable characters.

It looks like there should be a Wireshark.app to view the trace files with, however, I do not see how to start it.

Any ideas?

Best Answer

Type brew options wireshark to show the options provided with wireshark.

To install Wireshark with the UI :

brew install wireshark --with-qt

If you've already installed, you can use the reinstall command instead. This should only download the required qt dependencies.

brew reinstall wireshark --with-qt