본문 바로가기

카테고리 없음

준비 : Python 및 모듈(Package), Editor 설치

Python 및 모듈(Package) 설치하기

 

1. 가장 먼저 Python을 설치 한다. 설치는 아래 주소에서 할 수 있다

www.python.org/downloads/

 

Download Python

The official home of the Python Programming Language

www.python.org

 

2. 웹 데이터 수집에 필요한 기본적인 모듈을 설치한다.

아래서 두가지를 주로 사용하기 때문에 먼저 설치 해둔다.

 

Reqeusts : 웹상의 데이터를 가져올 수 있는 패키지이다.

BeautifulSoup4 : BS4는 HTML코드를 파싱하여 원하는 데이터를 수집할 수 있게 도와주는 패키지이다.

 

설치는 아래와 같이 진행하면 된다.

1) 작업 실행창에서 cmd로 명령 프롬프트를 연다.

2) pip install <module name> 입력한다.

  예, pip install requests

      pip install beautifulsoup4

 

 

 

 

 

에디터(Editor) 설치

필자는 Visual Studio Code를 주로 사용하기 때문에 VS Code를 활용해보도록 하겠다.

VS Code는 아래에서 설치 할 수 있다.

 

code.visualstudio.com/

 

Visual Studio Code - Code Editing. Redefined

Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications.  Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.

code.visualstudio.com

 

설치한 VS Code에 python 코딩을 도와주는 확장 프로그램을 추가해주면 좋다.

아래 순서대로 VS Code에서 python 확장프로그램을 설치 해준다.

반응형