-
Notifications
You must be signed in to change notification settings - Fork 11
0.0.1 설치법
임한솔 edited this page Apr 24, 2024
·
1 revision
- python 버전일치를 위한 pyenv 설치
brew install pyenv pyenv-virtualenv
- 환경변수 설정
# ~/.zshrc
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init --path)"
eval "$(pyenv init -)"
- pyenv 로 3.11 버전 설치(작성일 기준 최신버전)
pyenv install 3.11.9
- global 로 설정
pyenv global 3.11.9
- 프로젝트 루트로 이동하여 가상환경 구동하고 패키지 설치
poetry shell
poetry install
- 앱 빌드
poetry run python setup.py py2app