Python バージョン 3.7.7 がインストールされているのに、なぜバージョン 2.7.16 が実行されているのかわかりません。

Python バージョン 3.7.7 がインストールされているのに、なぜバージョン 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.

関連情報