WARNING: Python 2.7 is not recommended 해결, 맥에 파이썬 설치하기
Data Analyst

빅데이터 관련 자료/Python

WARNING: Python 2.7 is not recommended 해결, 맥에 파이썬 설치하기

carpe08 2022. 2. 26. 02:12
320x100
320x100

 

이런 에러가 발생하면?

WARNING: Python 2.7 is not recommended. 
This version is included in macOS for compatibility with legacy software. 
Future versions of macOS will not include Python 2.7. 
Instead, it is recommended that you transition to using 'python3' from within Terminal.

 

해결방법

1. 파이썬을 다운받습니다.

https://www.python.org/downloads/

 

Download Python

The official home of the Python Programming Language

www.python.org

 

2. 아래와 같이 terminal에서 순서대로 입력합니다.

python -> exit() ->  python3 

 

 

3. 검증

print("hello") 잘 출력되네요 ㅎㅎ

그러면 정상적으로 우리가 설치한 python 이 실행되고 있다는 것을 확인할 수 있습니다.

 

320x100
320x100