카테고리 없음

파이썬 개발환경 설치과정 정리

NeoAlchemist 2023. 2. 3. 17:11
728x90
반응형

1. Python 설치 (윈도우버젼 기준, 64bit)

https://www.python.org/

 

Welcome to Python.org

The official home of the Python Programming Language

www.python.org

파이썬 홈페이지 -> Downloads =>최신버젼 다운로드

 

설치파일 실행

1. Add python.exe to PATH  체크

2. Customize installation 선택

Next를 클릭해서 다음으로 넘어가기...

1. 경로를 수정해줌..    ex) C:\Python    

2. install 

 

설치화면......

설치완료..  Close

 

2. Visual studio code 설치

https://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

 

설치완료

한국어 버젼으로 설치하려면 설치 및 다시 시작 클릭

1. 왼쪽하다 Extention(확장) 아이콘 클릭

2. 검색창에 python 검색

3. Python 설치

 

 

파이썬 추가 라이브러리를 설치해주어야한다

명령어 입력을 위해서 터미널 창을 활성화해준다

위 그림의 순서대로 실행    1. view -> 2.Terminal  => 터미널창 활성화

터미널 창에서 다음 명령라인을 하나씩 입력해 필요한 라이브러리를 설치해준다

python.exe -m pip install --upgrade pip

pip install requests

pip install beautifulSoup4

pip install lxml

pip install numpy

pip install pansas 오타수정 2023.09.12

pip install pandas

pip install selenium

## 크롬 웹드라이브 설치

1. 크롬버젼 확인

주소창에 다음 내용 입력 (chrome://version/) 

2. 크롬 드라이버 다운로드

https://chromedriver.chromium.org/downloads

 

ChromeDriver - WebDriver for Chrome - Downloads

Current Releases If you are using Chrome version 110, please download ChromeDriver 110.0.5481.77 If you are using Chrome version 109, please download ChromeDriver 109.0.5414.74 If you are using Chrome version 108, please download ChromeDriver 108.0.5359.71

chromedriver.chromium.org

 

 

 

###  2023.02.09 기준 작성중인 포스트...

 

728x90
반응형