./categories/back-end
Python 라이브러리·환경 설정
VS Code
- Extensions → Python 설치
.py저장 후 Run and Debug → Python Filelaunch.json생성(Python File) 후 실행
pip
python -m pip install --upgrade pip
# SSL 인증서 오류 시
pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org 패키지명
자주 쓰는 패키지
pip install uiautomation # UI Automation
pip install openpyxl # Excel
pip install selenium # 브라우저
pip install pyautogui # 데스크톱
- ChromeDriver: chromedriver
- Selenium: selenium.dev/downloads
관련 링크: https://www.selenium.dev/downloads/
./comments