준호씨의 블로그

python 버전 확인 방법. -V옵션. -VV(V 두 번)는? 본문

개발이야기

python 버전 확인 방법. -V옵션. -VV(V 두 번)는?

준호씨 2023. 3. 3. 00:54
반응형

python의 버전을 확인하는 방법입니다. --version 옵션을 통해 버전을 확인할 수 있습니다.

$ python --version
Python 3.8.10

3.8.10 인 것을 확인할 수 있습니다.

 

--version의 축약형인 -V옵션을 사용할 수도 있습니다.

$ python -V
Python 3.8.10

 

--help 옵션을 사용하면 -V (또는 --version)을 통해 python 버전을 확인할 수 있다고 나옵니다.

$ python --help
usage: /Users/junho85/.pyenv/versions/3.8.10/bin/python [option] ... [-c cmd | -m mod | file | -] [arg] ...
Options and arguments (and corresponding environment variables):
...
-V     : print the Python version number and exit (also --version)
         when given twice, print more information about the build
...

 

-VV

만약 V를 두 번 사용하면 build 정보를 좀 더 알려준다고 하네요.

$ python -VV
Python 3.8.10 (default, Oct 14 2022, 11:25:08)
[Clang 14.0.0 (clang-1400.0.29.102)]

2022년 10월 14일 11:25:08에 빌드되었나 봅니다. Clang 14.0.0을 이용했다고 나옵니다.

 

print(sys.version)

python REPL 모드에서 sys.version을 출력하면 python의 version을 확인할 수 있습니다.

$ python
Python 3.8.10 (default, Oct 14 2022, 11:25:08)
[Clang 14.0.0 (clang-1400.0.29.102)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> print(sys.version)
3.8.10 (default, Oct 14 2022, 11:25:08)
[Clang 14.0.0 (clang-1400.0.29.102)]

python -VV를 한 것과 같은 정보가 나오네요.

반응형
Comments