로메오의 블로그

[Python] Python 3.7 설치하기 - 업그레이드 (MacOSX) 본문

Backend/Python & Blockchain

[Python] Python 3.7 설치하기 - 업그레이드 (MacOSX)

romeoh 2019. 6. 26. 02:57
반응형

[카테고리] TENSORFLOW

설치확인

MacOS에는 기본적으로 Python 2.7 버전이 설치되어 있습니다.

$ python --version

Python 3.7버전을 설치하겠습니다.

xcode-select를 설치합니다.

$ xcode-select --install

Homebrew를 설치합니다.

$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

설치가 완료되면 doctor를 실행합니다.

$ brew doctor

이제 python 3을 설치합니다.

$ brew install python3

버전 확인하기

$ python3 --version
Python 3.7.3
$ python --version
Python 2.7.10

미리 설치된 python 2.7을 python 3.7로 업그레이드하는 것은 추천하지 않습니다.

다른 문제가 발생할 수 있습니다.

 

반응형
Comments