사이트: https://github.com/pyenv/pyenv
homebrew가 설치되어 있으면 아래 명령으로 설치 가능
$ brew install pyenv
설치가 가능한 목록 확인
$ pyenv install -l
Available versions:
2.1.3
2.2.3
...
3.8.1 버전 설치
$ pyenv install 3.8.1
pyenv shell
먼저 사용을 위해서는 pyenv init 명령 수행이 필요하다.
$ pyenv shell
pyenv: shell integration not enabled. Run `pyenv init' for instructions
$ pyenv init
# Load pyenv automatically by appending
# the following to ~/.bash_profile:
eval "$(pyenv init -)"
자동으로 초기화는 해주지 않고 .bash_profile에 위의 eval 부분을 넣으라는 것이다.
추가후 pyenv shell 명령을 수행한다. 버전을 같이 넣지 않으면 아래와 같이 에러가 뜬다.
$ pyenv shell
pyenv: no shell-specific version configured
위에서 설치한 3.8.1로 실행
$ pyenv shell 3.8.1
$ python --version
Python 3.8.1
성공!
'Programing > Scripts' 카테고리의 다른 글
[python] BeautifulSoup 로 XML 처리하기 (0) | 2020.02.18 |
---|---|
[JS] ESLint를 썼더라면... (0) | 2019.10.31 |
[Google 스프레드시트] AWS 로그 찾기 (0) | 2019.06.03 |
spring.boot - yml에서 특정 클래스 로깅 레벨 설정하기 (0) | 2018.11.07 |
자바스크립트에서 날짜별 iterate 하기 (0) | 2018.03.06 |