Python 3에서는 pip가 기본으로 들어간다. 이 pip를 이용해서 기본 module 이외에 따로 설치한 module들의 버전 정보를 쉽게 볼 수 있다.
import pip
installed_packages = pip.get_installed_distributions()
installed_packages_list = sorted(["%s==%s" % (i.key, i.version)
for i in installed_packages])
print(installed_packages_list)
이렇게 script창에 넣고 실행하면 된다.
'프로그래밍' 카테고리의 다른 글
02. Git 다운로드 및 GitLab과 연동 (0) | 2015.09.02 |
---|---|
01. GitLab 가입 및 프로젝트 생성 (0) | 2015.08.31 |
python 한글 출력을 위한 sublime text 3 build 설정 (0) | 2015.08.27 |
[Python] GCM 개론 - 개발자 등록 (0) | 2015.01.19 |
[Python]GCM개론 - 컴퓨터에서 핸드폰에 메시지를 보내보자. (3) | 2015.01.19 |