반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 리눅스
- vsCode
- MachineLearning
- 개발
- localserver
- centos
- IOS
- TensorFlow
- node
- jest
- 네트워크
- PYTHON
- 맥
- xcode
- 센토스
- Chrome
- react
- qunit
- androidstudio
- MAC
- build
- unittest
- VirtualBox
- avds
- Android
- webpack
- linux
- picker
- ReactNative
Archives
- Today
- Total
로메오의 블로그
[Python] Python 3.7 설치하기 - 업그레이드 (MacOSX) 본문
반응형
설치확인
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로 업그레이드하는 것은 추천하지 않습니다.
다른 문제가 발생할 수 있습니다.
반응형
'Backend > Python & Blockchain' 카테고리의 다른 글
[Ethereum] 나만의 코인 발행하기 ETH - ICO (0) | 2019.07.03 |
---|---|
[Ethereum] MetaMask 테스트 넷에서 무료코인 받기 (0) | 2019.07.03 |
[Ethereum] 메타마스크 설치 [Metamask - 여우지갑] (0) | 2019.07.03 |
[TensorFlow] 매출 예측하기 - 선형회귀 Linear Regression (0) | 2019.06.26 |
[TensorFlow] 설치하기 (0) | 2019.06.26 |
Comments