install requests, BeautifulSoup 설치

CODEDRAGON Development/Python

반응형

 

install requests

http://docs.python-requests.org/en/latest/user/install/#install

 

 

 

pip 위치로 이동

파이썬이 설치된 폴더 하위에 Scripts 폴더에 위치해 있습니다.

C:\Python\Python36-32\Scripts

 

cd C:\Python\Python36-32\Scripts

C:\CodeLab>cd C:\Python\Python36-32\Scripts

 

C:\Python\Python36-32\Scripts>

 

 

BeautifulSoup 설치

pip install beautifulsoup4

C:\Python\Python36-32\Scripts>pip install beautifulsoup4

Collecting beautifulsoup4

  Downloading beautifulsoup4-4.6.0-py3-none-any.whl (86kB)

    100% |████████████████████████████████| 92kB 511kB/s

Installing collected packages: beautifulsoup4

Successfully installed beautifulsoup4-4.6.0

 

C:\Python\Python36-32\Scripts>

 

 


반응형