位元詩人 技術雜談:How to Remove PKG packages on Mac

Facebook Twitter LinkedIn LINE Skype EverNote GMail Yahoo Email

For GUI mac software, AppCleaner is an easy way to safely and cleanly uninstall it on Mac. However, there is no easy method to uninstall PKG packages on Mac.

I have written a small script to uninstall PKG packages on my homebin repo. You can easily download it with curl or wget.


$ curl https://raw.githubusercontent.com/cwchen123/homebin/master/removepkg > removepkg
$ chmod +x removepkg
$ mkdir /usr/local/bin
$ mv removepkg /usr/local/bin
{{< / highlight >}}

The script deletes only the files of a package first; then deletes only empty directories of the package.  Therefore, other directories will not be deleted mindlessly.

Use `pkgutil --pkgs` to see which packages to uninstall.  You may use `grep` to search the package.

```console
$ pkgutil --pkgs | grep package_name
{{< / highlight >}}

Before you really uninstall the package, you may look a while these files with `removepkg --dry`.  Say we want to remove Midnight Commander for Mac.

```console
$ removepkg --dry hu.louise.mc.midnightCommanderInstaller.usr.pkg
{{< / highlight >}}

If you are sure to remove the package, repeat the command with `sudo`.  With the same case:

```console
$ sudo removepkg hu.louise.mc.midnightCommanderInstaller.usr.pkg
{{< / highlight >}}
關於作者

位元詩人 (ByteBard) 是資訊領域碩士,喜歡用開源技術來解決各式各樣的問題。這類技術跨平台、重用性高、技術生命長。

除了開源技術以外,位元詩人喜歡日本料理和黑咖啡,會一些日文,有時會自助旅行。