nugawiki

./categories/back-end

Python 라이브러리·환경 설정

업데이트 2026-07-21 조회수

VS Code

  1. Extensions → Python 설치
  2. .py 저장 후 Run and Debug → Python File
  3. launch.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      # 데스크톱

./comments