"Python 모듈 설치 확인"의 두 판 사이의 차이

24번째 줄: 24번째 줄:
==같이 보기==
==같이 보기==
*[[Python 설치된 모듈 목록]]
*[[Python 설치된 모듈 목록]]
*[[This is MySQLdb version (1, 2, 3, 'gamma', 1), but mysql is version (1, 2, 3, 'final', 0)]


[[분류: Python]]
[[분류: Python]]

2014년 7월 8일 (화) 14:56 판

Python 모듈 설치 확인
Python 모듈 버전 확인

1 방법 1

python -c 'help("modules")' | grep 모듈명
[root@jmnote ~]# python -c 'help("modules")' | grep simplejson
HTMLParser          cmath               linuxaudiodev       simplejson

2 방법 2

  • 버전까지 확인 가능
  • 단, 기본 내장 모듈은 확인 불가
pip list | grep 모듈명
[root@jmnote ~]# pip list | grep MySQL
MySQL-python (1.2.4b4)

3 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}