Skip to content
Merged
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
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,13 @@ conductor server start
## Install the SDK

```shell
python3 -m venv conductor-env
source conductor-env/bin/activate # Windows: conductor-env\Scripts\activate
pip install conductor-python
```

> **Already in a virtual environment?** Skip the `venv` step and run `pip install conductor-python` directly. On macOS, Windows, or in containers where system Python is not locked down, you can also install globally.

## 60-Second Quickstart

**Step 1: Create a workflow**
Expand Down Expand Up @@ -162,7 +166,7 @@ python quickstart.py
> See [Configuration](#configuration) for details.

That's it — you just defined a worker, built a workflow, and executed it. Open the Conductor UI (default:
[http://localhost:8127](http://localhost:8127)) to see the execution.
[http://localhost:8080](http://localhost:8080)) to see the execution.

---

Expand Down
Loading