티스토리 뷰
앞서 설치했던 pyenv를 이용하여 python3를 설치해 보자.
먼저 pyenv를 통해 설치할 수 있는 python의 버전 list를 얻어오자.
$ pyenv install --list
...
3.5.1
3.5.2
3.6.0a1
3.6.0a2
3.6-dev
anaconda-1.4.0
anaconda-1.5.0
...
이 중에서 나는 3.6.0a2를 설치해 보도록 하겠다.
$ sudo pyenv install 3.6.0a2
Downloading Python-3.6.0a2.tgz...
-> https://www.python.org/ftp/python/3.6.0/Python-3.6.0a2.tgz
/usr/local/bin/python-build: line 230: pushd: Python-3.6.0a2: No such file or directory
BUILD FAILED (OS X 10.12.2 using python-build 20160130)
Inspect or clean up the working tree at /tmp/python-build.20170122013453.16887
Results logged to /tmp/python-build.20170122013453.16887.log
Last 10 log lines:
../Python-3.6.0a2/Doc/c-api/structures.rst: Path contains '..'
../Python-3.6.0a2/Doc/c-api/sys.rst: Path contains '..'
../Python-3.6.0a2/Doc/c-api/tuple.rst: Path contains '..'
../Python-3.6.0a2/Doc/c-api/type.rst: Path contains '..'
../Python-3.6.0a2/Doc/c-api/typeobj.rst: Path contains '..'
../Python-3.6.0a2/Doc/c-api/unicode.rst: Path contains '..'
../Python-3.6.0a2/Doc/c-api/utilities.rst: Path contains '..'
../Python-3.6.0a2/Doc/c-api/veryhigh.rst: Path contains '..'
../Python-3.6.0a2/Doc/c-api/weakref.rst: Path contains '..'
tar: Error exit delayed from previous errors.
.....원래 한번에 뭐가 잘 되는 법은 없다. 하필 골라도 이런 버전을 골라서 꼭 찾아보게 된다.
구글링을 통해 해결 방법을 알아보니 이미 report된 issue이다.(https://bugs.python.org/issue27337)
해결 방법은 아래와 같다.
$ brew install gnu-tar
$ PATH="/usr/local/opt/gnu-tar/libexec/gnubin:$PATH" pyenv install 3.6.0a2
pyenv 명령으로 정상적으로 설치가 되었는지 확인해 보자.
$ pyenv versions
* system (set by ...)
3.6.0a2
정상적으로 설치가 된 것 같으니 이번에 설치한 버전으로 변경해보자.
$ pyenv global 3.6.0a2
$ pyenv versions
system
* 3.6.0a2 (set by ...)
$ python --version
Python 3.6.0a2
'workspace > python' 카테고리의 다른 글
python으로 REST API 호출 (0) | 2017.01.27 |
---|---|
PyCharm 설치 (0) | 2017.01.22 |
OS X - python 개발 환경 구축 (0) | 2016.07.07 |