feat(kernel): add uv to python notebook environments#420
Merged
Conversation
6718cf8 to
2175bf5
Compare
For uv-based environments, the kernel now has access to the uv binary via PATH and has uv installed as a Python package. This enables both `!uv pip install` (shell magic) and `%uv pip install` (IPython magic) to work seamlessly from notebooks. Changes: - uv:inline and uv:prewarmed: Set VIRTUAL_ENV and add uv to PATH at kernel launch - uv:inline and uv:prewarmed: Install uv as a pip package during env creation - uv:pyproject: Added --with uv to uv run command - daemon pool warming: Added uv to default packages list
2175bf5 to
a499009
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
UV binaries and packages are now available in all UV-based notebook environments. Both
!uv pip install(shell magic) and%uv pip install(IPython magic) work seamlessly, with packages installing into the notebook's virtual environment.Changes
VIRTUAL_ENVand add uv binary to PATH at kernel launch--with uvtouv runcommandVerification
!uv --versionshows the correct uv path%uv pip install requestsinstalls into the environment's venv%uvworksPR submitted by @rgbkrk's agent, Quill