LoginSignup
23
26

More than 3 years have passed since last update.

Pythonのバージョンの確認・表示

Last updated at Posted at 2019-08-09

Pythonのバージョン取得方法は複数存在します。
その中で、個人的に一番使っている取得方法を複数個まとめてみました!

コマンドラインでPython のバージョン確認

python系

$ python --version
Python 2.7.10

$ python -V
Python 2.7.10

python3系

$ python3 --version
Python 3.7.3

$ python3 -V
Python 3.7.3

$ python3 -VV
Python 3.7.3 (v3.7.3:ef4ec6ed12, Mar 25 2019, 16:52:21) 
[Clang 6.0 (clang-600.0.57)]

Python3.6から-VVオプションが追加され、-Vよりも詳しい情報が表示されるようになりました。

バージョン確認の仕方は複数ありますが、個人的にはこれらの方法が、一番簡単な確認方法です。

23
26
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
23
26