./categories/os
macOS Python 개발환경 (Homebrew)
설치
- 공식: https://www.python.org/downloads/
- Homebrew: Homebrew
brew install python
# 또는 brew upgrade python@버전
brew install pipenv
PATH (Intel 예)
~/.zshrc 또는 ~/.bash_profile:
export PATH=/usr/local/opt/python/libexec/bin:$PATH
Apple Silicon은 /opt/homebrew/opt/python/libexec/bin 확인.
source ~/.zshrc # 또는 ~/.bash_profile
python -V
./comments