mirror of
https://github.com/astral-sh/uv.git
synced 2025-10-27 10:26:29 +00:00
Support --link-mode=symlink (#5208)
## Summary Addressing this [issue](https://github.com/astral-sh/uv/issues/5147) by adding the capability for Symbolic linking as a link mode when installing or syncing dependencies.
This commit is contained in:
parent
bb84cbb39d
commit
ef56df26bf
3 changed files with 126 additions and 4 deletions
|
|
@ -287,6 +287,7 @@ Windows.
|
|||
- `"clone"`: Clone (i.e., copy-on-write) packages from the wheel into the site packages
|
||||
- `"copy"`: Copy packages from the wheel into the site packages
|
||||
- `"hardlink"`: Hard link packages from the wheel into the site packages
|
||||
- `"symlink"`: Symbolically link packages from the wheel into the site packages
|
||||
|
||||
**Example usage**:
|
||||
|
||||
|
|
@ -1524,6 +1525,7 @@ Windows.
|
|||
- `"clone"`: Clone (i.e., copy-on-write) packages from the wheel into the site packages
|
||||
- `"copy"`: Copy packages from the wheel into the site packages
|
||||
- `"hardlink"`: Hard link packages from the wheel into the site packages
|
||||
- `"symlink"`: Symbolically link packages from the wheel into the site packages
|
||||
|
||||
**Example usage**:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue