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
8 changes: 8 additions & 0 deletions docs/pip/environments.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,14 @@ The virtual environment can be "activated" to make its packages available:
$ use .venv\Scripts\activate.nu
```

## Deactivating an environment

To exit a virtual environment, use the `deactivate` command:

```console
$ deactivate
```

## Using arbitrary Python environments

Since uv has no dependency on Python, it can install into virtual environments other than its own.
Expand Down
Loading