AWS Connect Contact Tracer
를 실행하기 전에 다음 환경이 필요합니다:
brew install awscli
brew install pyenv
pyenv --version
vi ~/.zprofile
# ~/.zprofile 수정 시작
# ---
# PyEnv - <https://github.com/pyenv/pyenv#set-up-your-shell-environment-for-pyenv>
export PYENV_ROOT="${HOME}/.pyenv"
command -v pyenv >/dev/null || export PATH="${PYENV_ROOT}/bin:${PATH}"
eval "$(pyenv init -)"
# ~/.zprofile 수정 끝
pyenv install -l | grep -v '-' | grep -e '\\d' | tail -n 8
pyenv install '3.12.3'
pyenv init
source ~/.zprofile
pyenv global '3.12.3'
pyenv local '3.12.3'
pyenv shell '3.12.3'
python --version
# homebrew 설치
/bin/bash -c "$(curl -fsSL <https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh>)"
# git 설치
brew install git
git clone <https://github.com/kyoo0008/aws-connect-contact-tracer.git>
git pull
을 실시한다.