virtual staffs kickoff with google adk
- install latest uv package
$ curl -LsSf https://astral.sh/uv/install.sh | sh
...
everything's installed!
$ uv --version
uv 0.8.21 (f64da2745 2025-09-23)- install packages with uv only
$ cat pyproject.toml
...
$ uv sync
Using CPython 3.13.7
Creating virtual environment at: .venv
...- install packages with uv on venv
$ cat pyproject.toml
...
$ python -m venv .venv
...
$ source .venv/bin/activate
...
$ uv pip install -e .
...- startup adk web with fastapi
$ uv run adk web
...
INFO: Started server process [27852]
INFO: Waiting for application startup.
+-----------------------------------------------------------------------------+
| ADK Web Server started |
| |
| For local testing, access at http://127.0.0.1:8000. |
+-----------------------------------------------------------------------------+
INFO: Application startup complete.
INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
...