- 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/openssl@1.1/certs
and run
/usr/local/opt/openssl@1.1/bin/c_rehash
openssl@1.1 is keg-only, which means it was not symlinked into /usr/local,
because macOS provides LibreSSL.
If you need to have openssl@1.1 first in your PATH run:
echo 'export PATH="/usr/local/opt/openssl@1.1/bin:$PATH"' >> ~/.zshrc
For compilers to find openssl@1.1 you may need to set:
export LDFLAGS="-L/usr/local/opt/openssl@1.1/lib"
export CPPFLAGS="-I/usr/local/opt/openssl@1.1/include"