Skip to content
Open
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
21 changes: 17 additions & 4 deletions docs/src/quickstart/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,24 @@ pip install pylance

For the latest features and bug fixes, you can install the preview version:

```bash
pip install --pre --extra-index-url https://pypi.fury.io/lance-format/pylance
```
=== "pip"

```bash
pip install --pre --extra-index-url https://pypi.fury.io/lance-format/ pylance
```

=== "uv"

```bash
uv venv
uv pip install --prerelease allow --index https://pypi.fury.io/lance-format/ pylance

# To add to pyproject.toml, just do:
uv add --prerelease allow --index https://pypi.fury.io/lance-format/ pylance
```

> Note: Preview releases receive the same level of testing as regular releases.
!!! note
Preview releases receive the same level of testing as regular releases.

## Set Up Your Environment

Expand Down
Loading