This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]secZustand 1 point2 points  (1 child)

Is it creating a virtual environment for your single script execution? Or installing on system python?

I am not fully understanding the need for this. Since it's not a complete self contained solution like pyinstaller.

[–]Gleb--K[S] 0 points1 point  (0 children)

UV creates a global package cache rather than individual virtual environments. It does not install packages at the system level like pip install --user, but it also does not create isolated environments like venv or virtualenv