osx - How do I uninstall AVBIN on Mac? -


how uninstall avbin on mac? i've looked every on web find answer. way want uninstalled can use pyglet.

it looks there no official uninstall, need discover it.

pkgutil --pkgs 

then search avbin, found: com.github.avbin.avbin10.libavbin.10.pkg. better way of searching:

pkgutil --pkgs | grep avbin 

now can do

pkgutil --pkg-info com.github.avbin.avbin10.libavbin.10.pkg 

you should this:

package-id: com.github.avbin.avbin10.libavbin.10.pkg version: 10 volume: / location: usr/local/lib install-time: <time> 

then cd install location.

cd /usr/local/lib 

and list packages files.

pkgutil --files com.github.avbin.avbin10.libavbin.10.pkg 

this gives:

._libavbin.10.dylib libavbin.10.dylib 

so can do

sudo rm ._libavbin.10.dylib  sudo rm libavbin.10.dylib 

you need enter password. if want 100% sure, can do:

sudo rm *libavbin* 

that delete libavbin in (in folder are, /usr/local/lib)

and finaly

sudo pkgutil --forget com.github.avbin.avbin10.libavbin.10.pkg 

it should give:

forgot package 'com.github.avbin.avbin10.libavbin.10.pkg' on '/'. 

Comments

Popular posts from this blog

cakephp - simple blog with croogo -

How to group boxplot outliers in gnuplot -

bash - Performing variable substitution in a string -