Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion polymarket/_shared/polymarket_live.py
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,8 @@ def __init__(
except ImportError as exc:
raise RuntimeError(
"Live Polymarket execution requires `py-clob-client`. "
"Install it with `pip install py-clob-client` or add it to requirements.txt."
"Create and activate a virtual environment first, then run "
"`python -m pip install -r requirements.txt`."
) from exc

private_key = safe_str(
Expand Down
5 changes: 4 additions & 1 deletion polymarket/high-throughput-paired-basis-maker/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ Live execution requires both:

```bash
cd polymarket/high-throughput-paired-basis-maker
pip install -r requirements.txt
python3 -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
cp .env.example .env
cp config.example.json config.json
python3 scripts/agent.py --config config.json
Expand Down
5 changes: 4 additions & 1 deletion polymarket/liquidity-paired-basis-maker/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ Live execution requires both:

```bash
cd polymarket/liquidity-paired-basis-maker
pip install -r requirements.txt
python3 -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
cp .env.example .env
cp config.example.json config.json
python3 scripts/agent.py --config config.json
Expand Down
5 changes: 4 additions & 1 deletion polymarket/maker-rebate-bot/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ Live execution also requires:

```bash
cd polymarket/maker-rebate-bot
pip install -r requirements.txt
python3 -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
cp .env.example .env
cp config.example.json config.json
python3 scripts/agent.py --config config.json
Expand Down
5 changes: 4 additions & 1 deletion polymarket/paired-market-basis-maker/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ Live execution requires both:

```bash
cd polymarket/paired-market-basis-maker
pip install -r requirements.txt
python3 -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
cp .env.example .env
cp config.example.json config.json
python3 scripts/agent.py --config config.json
Expand Down