mirror of
https://github.com/j93es/browser-use-oauth.git
synced 2026-06-05 00:01:28 +09:00
Playwright 설치 시 Chromium 대신 Chrome으로 변경
This commit is contained in:
parent
a22c42099d
commit
c36db01dd8
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
|
@ -36,7 +36,7 @@ def install_playwright_chrome():
|
||||||
print("\n🛠️ Playwright의 Chromium을 설치 중입니다...")
|
print("\n🛠️ Playwright의 Chromium을 설치 중입니다...")
|
||||||
print("👉 이 작업은 시간이 걸릴 수 있습니다. 잠시 기다려주세요.")
|
print("👉 이 작업은 시간이 걸릴 수 있습니다. 잠시 기다려주세요.")
|
||||||
try:
|
try:
|
||||||
subprocess.run(["uv", "run", "playwright", "install", "chromium"], check=True)
|
subprocess.run(["uv", "run", "playwright", "install", "chrome"], check=True)
|
||||||
print("✅ Playwright Chrome 설치 완료.")
|
print("✅ Playwright Chrome 설치 완료.")
|
||||||
except subprocess.CalledProcessError as e:
|
except subprocess.CalledProcessError as e:
|
||||||
if "already" in e.stdout.decode():
|
if "already" in e.stdout.decode():
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue