The macOS Wine setup instructions use wget, but wget isn't installed on macOS by default. Running the command as written gives zsh: command not found: wget.
Two easy fixes:
- Swap to
curl, which ships with macOS:
curl -fsSL https://monogame.net/downloads/net8_mgfxc_wine_setup.sh | bash
- Or add
brew install wget to the prerequisite list alongside p7zip.
Option 1 is probably cleaner since it avoids an extra dependency.
The macOS Wine setup instructions use
wget, butwgetisn't installed on macOS by default. Running the command as written giveszsh: command not found: wget.Two easy fixes:
curl, which ships with macOS:brew install wgetto the prerequisite list alongsidep7zip.Option 1 is probably cleaner since it avoids an extra dependency.