버전 3.7.7이 설치되어 있는데 Python 버전 2.7.16이 실행되는 이유를 알 수 없습니까?

버전 3.7.7이 설치되어 있는데 Python 버전 2.7.16이 실행되는 이유를 알 수 없습니까?

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.

Python 2.7.16(기본값, 2020년 2월 29일, 01:55:37) [GCC 4.2.`

답변1

아마도 둘 다 가지고 있을 것입니다. 이것을 시도해 보세요

~> python --version
Python 2.7.17

~> python3 --version
Python 3.6.9

게다가 소프트웨어가 일부 /usr/local 경로에 설치되었다고 해서 반드시 바이너리 및 라이브러리 경로 등으로 인해 해당 소프트웨어가 사용된다는 의미는 아닙니다.

여기에 붙여넣은 첫 번째 오류 메시지는 다음을 권장합니다.that you transition to using 'python3' from within Terminal.

관련 정보