File tree Expand file tree Collapse file tree 3 files changed +21
-12
lines changed
Expand file tree Collapse file tree 3 files changed +21
-12
lines changed Original file line number Diff line number Diff line change @@ -259,10 +259,10 @@ pip install -r requirements.txt --use-pep517
259259``` bash
260260# This option downloads a ready-to-use image from Docker Hub
261261# Fastest and recommended for most users
262- docker- compose up -d
262+ docker compose up -d
263263
264264# Run OWL inside the container
265- docker- compose exec owl bash
265+ docker compose exec owl bash
266266cd .. && source .venv/bin/activate
267267playwright install-deps
268268xvfb-python examples/run.py
@@ -276,10 +276,10 @@ xvfb-python examples/run.py
276276# 2. Comment out the "image: mugglejinx/owl:latest" line
277277# 3. Uncomment the "build:" section and its nested properties
278278# 4. Then run:
279- docker- compose up -d --build
279+ docker compose up -d --build
280280
281281# Run OWL inside the container
282- docker- compose exec owl bash
282+ docker compose exec owl bash
283283cd .. && source .venv/bin/activate
284284playwright install-deps
285285xvfb-python examples/run.py
@@ -560,6 +560,9 @@ python owl/webapp_zh.py
560560
561561# Start the English version
562562python owl/webapp.py
563+
564+ # Start the Japanese version
565+ python owl/webapp_jp.py
563566```
564567
565568## Features
Original file line number Diff line number Diff line change @@ -294,10 +294,10 @@ cp owl/.env_template owl/.env
294294``` bash
295295# このオプションはDocker Hubから即使用可能なイメージをダウンロードします
296296# 最速であり、ほとんどのユーザーに推奨されます
297- docker- compose up -d
297+ docker compose up -d
298298
299299# コンテナ内でOWLを実行
300- docker- compose exec owl bash
300+ docker compose exec owl bash
301301cd .. && source .venv/bin/activate
302302playwright install-deps
303303xvfb-python examples/run.py
@@ -311,10 +311,10 @@ xvfb-python examples/run.py
311311# 2. "image: mugglejinx/owl:latest"行をコメントアウト
312312# 3. "build:"セクションとそのネストされたプロパティをコメント解除
313313# 4. 次に実行:
314- docker- compose up -d --build
314+ docker compose up -d --build
315315
316316# コンテナ内でOWLを実行
317- docker- compose exec owl bash
317+ docker compose exec owl bash
318318cd .. && source .venv/bin/activate
319319playwright install-deps
320320xvfb-python examples/run.py
@@ -544,6 +544,9 @@ python owl/webapp_zh.py
544544
545545# 英語版を起動
546546python owl/webapp.py
547+
548+ # 日本語版を起動
549+ python owl/webapp_jp.py
547550```
548551
549552## 機能
Original file line number Diff line number Diff line change @@ -295,10 +295,10 @@ cp owl/.env_template owl/.env
295295``` bash
296296# 此选项从Docker Hub下载一个即用型镜像
297297# 最快速且推荐给大多数用户
298- docker- compose up -d
298+ docker compose up -d
299299
300300# 在容器中运行OWL
301- docker- compose exec owl bash
301+ docker compose exec owl bash
302302cd .. && source .venv/bin/activate
303303playwright install-deps
304304xvfb-python examples/run.py
@@ -312,10 +312,10 @@ xvfb-python examples/run.py
312312# 2. 注释掉"image: mugglejinx/owl:latest"行
313313# 3. 取消注释"build:"部分及其嵌套属性
314314# 4. 然后运行:
315- docker- compose up -d --build
315+ docker compose up -d --build
316316
317317# 在容器中运行OWL
318- docker- compose exec owl bash
318+ docker compose exec owl bash
319319cd .. && source .venv/bin/activate
320320playwright install-deps
321321xvfb-python examples/run.py
@@ -543,6 +543,9 @@ python owl/webapp_zh.py
543543
544544# 英文版本
545545python owl/webapp.py
546+
547+ # 日文版本
548+ python owl/webapp_jp.py
546549```
547550
548551网页界面提供以下功能:
You can’t perform that action at this time.
0 commit comments