forked from ckh08045/AutoPercenty
12 lines
396 B
Python
12 lines
396 B
Python
import os
|
|
import subprocess
|
|
import sys
|
|
|
|
# 가상 환경 내 site-packages 경로 설정
|
|
playwright_path = os.path.join(sys.prefix, 'Lib', 'site-packages', 'playwright', 'browsers')
|
|
os.environ['PLAYWRIGHT_BROWSERS_PATH'] = playwright_path
|
|
|
|
# Playwright 설치
|
|
subprocess.run([sys.executable, '-m', 'pip', 'install', 'playwright'], check=True)
|
|
subprocess.run(['playwright', 'install'], check=True)
|