Home > Mobile >  Install libgdiplus on M1
Install libgdiplus on M1

Time:11-19

I'm trying to install libgdiplus on M1 MacBook. OS version 12 Monterey.

When I do brew install mono-libgdiplus it shows below message on terminal.

Warning: No available formula with the name "mono-libgdiplus".
==> Searching for similarly named formulae...
Error: No similarly named formulae found.
==> Searching for a previously deleted formula (in the last month)...
Error: No previously deleted formula found.
==> Searching taps on GitHub...
Error: No formulae found in taps.

CodePudding user response:

It works for me.

$ brew search mono-libgdiplus
==> Formulae
mono-libgdiplus

And homebrew-core does have the bottles for monterey and big sur.

CodePudding user response:

After long research I found I needed to do git -C $(brew --repo homebrew/core) checkout masterto fix the issue.

Check this link for more details: Homebrew Error: No formulae found in taps

  • Related