Notice
Recent Posts
Recent Comments
준호씨의 블로그
python 버전 확인 방법. -V옵션. -VV(V 두 번)는? 본문
반응형
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를 한 것과 같은 정보가 나오네요.
반응형
'개발이야기' 카테고리의 다른 글
Python - No module named 'MySQLdb'오류가 발생하면 (0) | 2023.03.14 |
---|---|
ChatGPT API 사용해 보기 in python (2) | 2023.03.09 |
python django 애플리케이션 Docker 이미지로 만들기 (0) | 2023.02.12 |
python - date range list 만들기, 100일 date list 만들기 (0) | 2023.02.08 |
python - 문자열 날짜(e.g. 2023-02-07)을 datetime, date 형태로 변경 (0) | 2023.02.07 |
Comments