Programming,  Python

[Python] Python 및 Pip Package 설치 경로 확인

1. Python 설치 경로 확인

$ which python
/usr/bin/python

또는 python을 실행시켜서도 확인 가능하다.

$ python
>>> import sys
>>> sys.executable
'/usr/bin/python'

2. Python pip package 설치 경로 확인

Python에서 package manager로 사용하는 pip의 package들이 설치되는 경로를 다음과 같이 확인 가능하다.

$ python -m site
sys.path = [
    '/usr/lib/python36.zip',
    '/usr/lib/python3.6',
    '/usr/lib/python3.6/lib-dynload',
    '/home/shumin/.local/lib/python3.6/site-packages',
    '/usr/local/lib/python3.6/dist-packages',
    '/usr/lib/python3/dist-packages',
]
USER_BASE: '/home/shumin/.local' (exists)
USER_SITE: '/home/shumin/.local/lib/python3.6/site-packages' (exists)

위 경로에서 /home/shumin/.local/lib/python3.6/site-packages 위치에 설치가 된다.

또는 특정 package 명을 통해서도 확인 가능하다.

$ pip show numpy
Name: numpy
Version: 1.19.5
Summary: NumPy is the fundamental package for array computing with Python.
Home-page: https://www.numpy.org
Author: Travis E. Oliphant et al.
Author-email:
License: BSD
Location: /home/shumin/.local/lib/python3.6/site-packages
Requires:
Required-by: pandas

2 Comments

Leave a Reply

Your email address will not be published. Required fields are marked *