1. pip show (library name)
(ex, pip show matplotlib)
----------------------------------------------------------------------------
user@localhost:~$ pip show matplotlib
Name: matplotlib
Version: 3.4.1
Summary: Python plotting package
Home-page: https://matplotlib.org
Author: John D. Hunter, Michael Droettboom
Author-email: matplotlib-users@python.org
License: PSF
Location: /home/user/.local/lib/python3.8/site-packages
Requires: kiwisolver, pillow, pyparsing, numpy, cycler, python-dateutil
Required-by: seaborn, scikit-image
----------------------------------------------------------------------------
2. pip list | grep (library name)
(ex, pip list | grep matplotlib)
----------------------------------------------------------------------------
user@localhost:~$ pip list | grep matplotlib
matplotlib 3.4.1
----------------------------------------------------------------------------
'개발 > Python' 카테고리의 다른 글
Python module path directory find (0) | 2021.04.27 |
---|---|
A Byte of Python (0) | 2021.04.22 |
PyCharm plugin Code With Me disable (conflict Kite) (0) | 2021.04.20 |
Anaconda run error : qtpy.PythonQtError: No Qt bindings could be found (0) | 2021.04.20 |
문자열 포맷별 출력 (0) | 2021.04.16 |