We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b21312 commit 0e49059Copy full SHA for 0e49059
1 file changed
src/omnipkg/core.py
@@ -15234,7 +15234,7 @@ def _run_pip_install(
15234
_t_wrapper_entry = time.perf_counter()
15235
# Build uv args once — reused by all three paths
15236
import platform as _plat
15237
- _link_mode = "symlink"
+ _link_mode = "copy" if _plat.system() == "Windows" else "symlink"
15238
_uv_args = ["pip", "install",
15239
"--cache-dir", self._uv_cache_dir,
15240
"--link-mode", _link_mode]
0 commit comments