아미(아름다운미소)

Ubuntu에서 pip, pip3 설치 본문

랭귀지/PYTHON

Ubuntu에서 pip, pip3 설치

유키공 2020. 10. 28. 12:21

pip이란 python으로 작성된 패키지의 설치 및 관리를 해주는 프로그램입니다.

pip은 Python 2.x용, pip3는 Python 3.x용 프로그램입니다.

apt-get install python-pip
apt-get install python3-pip


예제)
pip bs4 pandas lxml
pip3 bs4pandas lxml

'랭귀지 > PYTHON' 카테고리의 다른 글

PyDev Undefined variable from import error  (0) 2020.12.15
Importing the numpy c-extensions failed  (0) 2020.12.11
python PIP 설치  (0) 2020.10.23
python3 beautifulsoup 한글 깨짐  (0) 2020.04.13
python3.7 pip install beautifulsoup Error  (0) 2020.04.11
Comments