- Homebrew
x86_64
経由でインストールする (2021/Jan/23 現在 arm64
版 wgetはまだ無かった)
- 「ターミナル」を起動し、x86_64 環境にしてから、brew 経由で wget をインストールする。
(arm64)% arch -x86_64 /bin/zsh
(x86_64)% uname -m
x86_64
(x86_64)% bew install wget
- インストールの最後に以下のメッセージが出力された。wgetでSSLを使うときの注意事項らしい。
A CA file has been bootstrapped using certificates from the system
keychain. To add additional certificates, place .pem files in
/usr/local/etc/[email protected]/certs
and run
/usr/local/opt/[email protected]/bin/c_rehash
[email protected] is keg-only, which means it was not symlinked into /usr/local,
because macOS provides LibreSSL.
If you need to have [email protected] first in your PATH run:
echo 'export PATH="/usr/local/opt/[email protected]/bin:$PATH"' >> ~/.zshrc
For compilers to find [email protected] you may need to set:
export LDFLAGS="-L/usr/local/opt/[email protected]/lib"
export CPPFLAGS="-I/usr/local/opt/[email protected]/include"