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
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,25 @@ Lance-Ray combines the distributed computing capabilities of Ray with the effici
# Install from source
git clone https://github.com/lance-ray/lance-ray.git
cd lance-ray

# if uv is not installed
pip install uv

# if 'uv' command is not recognized (especially on windows)
#then restart your terminal or use:
#python -m uv pip install -e .

uv pip install -e .

# Or install with development dependencies

# if 'uv' is not installed
pip install uv

# If 'uv' command is still not recognized (especially on Windows),
# try restarting your terminal or use:
# python -m uv pip install -e ".[dev]"

uv pip install -e ".[dev]"
```

Expand Down