web-agent-protocol

🌐Web Agent Protocol (WAP) - Record and replay user interactions in the browser with MCP support

GitHubスター

477

ユーザー評価

未評価

お気に入り

0

閲覧数

32

フォーク

84

イシュー

7

インストール方法
難易度
中級
推定所要時間
10-20

インストール方法

インストール方法

前提条件

Python: 3.11以上
pip: 最新版

インストール手順

1. Conda環境の作成

bash
conda create -n WAP python=3.11

2. Conda環境のアクティベート

bash
conda activate WAP

3. 依存関係のインストール

bash
pip install -r requirements.txt

4. リポジトリソースパスの設定


set PYTHONPATH=C:/path/to/webagentprotocol # Windows用
export PYTHONPATH=/path/to/webagentprotocol # Linux用

5. APIキーを含む.envファイルの作成


OPENAI_API_KEY=sk-proj-...
DEEPSEEK_API_KEY=sk-...

トラブルシューティング

問題: 環境が正しく設定されていない 解決策: Pythonとpipのバージョンを確認し、依存関係を再インストールしてください。