python install and anconda install for mac (pycham)
python install
1. pyenv 설치
brew install pyenv
2. pyenv 환경 변수 등록
# echo -e 'eval "$(pyenv init -)"' >> ~/.zshrc # source ~/.zshrc # pyenv versions
3. 특정 버전 설치 및 버전 등록
# pyenv install -l # pyenv install 3.8.6 # pyenv local 3.8.6 # python --version # python -m pip install --user virtualenv
anconda install
1. anconda 설치
# brew install --cask anaconda
2. anconda 환경 설정
# echo export PATH="/usr/local/anaconda3/bin:\$PATH" >> ~/.zshrc # source ~/.zshrc # conda --version
3. pycham 설치
# brew install --cask pycharm
4. pycham 설정