본문 바로가기
python

사용중인 가상환경에서 pip 패키지 설치 위치 확인하기

by 타닥타닥 토다토닥 부부 2024. 11. 14.
반응형

사용중인 가상환경에서 pip 패키지 설치 위치 확인하기

 

import sys

for path in sys.path:
    if 'site-packages' in path.split('/')[-1]:
        print(path)

 

 

[참고] gensim 설치 여부 확인하기

-경로확인

import sys, os
# */site-packages is where your current session is running its python out of
site_path = ''
for path in sys.path:
    if 'site-packages' in path.split('/')[-1]:
        print(path)
        site_path = path
# search to see if gensim in installed packages
if len(site_path) > 0:
    if not 'gensim' in os.listdir(site_path):
        print('package not found')
    else:
        print('gensim is installed')

 

- 패키지 불러와 보기

try:
    import gensim
    print("gensim is installed")
except ImportError:
    print("gensim is not installed")

 

- 터미널에서 확인해 보기

pip show gensim
반응형

댓글