docs: update install instructions. (#28)

Seth Troisi committed May 27, 2026 at 13:29 UTC 8130e2e4310ee57ecb277cf503246b3ffc3a76b0
1 file changed +10 -1
README.md
+10 -1
@@ -6,10 +6,19 @@ A command-line interface for Google Colab. Create sessions, run code, manage fil
6
7 ## Install
8
9 +With uv
10 +
11 +```bash
12 +uv tool install -U google-colab-cli
13 +```
14 +
15 +or with pip
16 +
17 ```bash
10 -uv tool install git+https://github.com/googlecolab/google-colab-cli
18 +pip install -U google-colab-cli
19 ```
20
21 +
22 Note: If you have a non-standard default package index (Googlers), you may also need to add `--index https://pypi.org/simple`.
23
24