brew-install | python-memo
brew install で python, python3, pip, pip3 を別々に入れる必要がなくなりましたか?
2024以降は下記だけ
brew install python
ただ、システムのデフォルトを変えないためなのか、python
コマンドは使えない。
python3
を使う
which python
→ python not found
which python3
→ /opt/homebrew/bin/python3
なので、shebang も、python3
を指定する
#!/usr/bin/env python3
#coding: utf-8