카테고리 : IT2/python buytime | 2023. 10. 27. 10:56
pip?란 pip(Package Installer for Python)는 파이썬 설치 시 기본적으로 내장되어 설치되는 패키지 매니저로써, 다른 패키지들을 쉽게 다운로드할 수 있는 도구입니다. 리눅스로 치면 yum, dnf, apt와 비슷하다고 생각하면 된다. 패키지 설치 pip install 이라는 명령어로 패키지를 설치할 수 있다. 최근 웹 크롤링때문에 자주 사용하고 있는 requests 설치해봤다. > pip install requests Collecting requests Downloading requests-2.31.0-py3-none-any.whl.metadata (4.6 kB) Requirement already satisfied: charset-normalizer=2 in e:\python3..