nugawiki

./categories/os

macOS Python 개발환경 (Homebrew)

업데이트 2026-07-21 조회수

설치

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