Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

로컬에 설치된 Python 모듈 목록을 얻으려면 어떻게 해야 합니까?


로컬로 설치된 Python 모듈 목록을 가져오는 방법에는 여러 가지가 있습니다. 가장 쉬운 방법은 예를 들어 Python 셸을 사용하는 것입니다.

>>> help('modules')
Please wait a moment while I gather a list of all available modules...
BaseHTTPServer      brain_nose          markupbase          stat
Bastion             brain_numpy         marshal             statvfs
CGIHTTPServer       brain_pkg_resources math                string
Canvas              brain_pytest        matplotlib          stringold
...
...

터미널에 설치된 모듈 목록을 얻으려면 Python 패키지 관리자인 pip를 사용할 수 있습니다. 예를 들어,

$ pip freeze

다음과 같은 결과를 얻을 수 있습니다.

asn1crypto==0.22.0
astroid==1.5.2
attrs==16.3.0
Automat==0.5.0
backports.functools-lru-cache==1.3
cffi==1.10.0
...

pip 버전이 1.3 이상인 경우 pip list를 사용할 수도 있습니다. 예를 들어,

$ pip list
asn1crypto (0.22.0)
astroid (1.5.2)
attrs (16.3.0)
Automat (0.5.0)
backports.functools-lru-cache (1.3)
...
...