-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doc and install: avoid security issue on Windows #10428
Comments
What did your security software do? Was there an error? |
The security software closed the terminal and reported an issue to my company 🙂 (I know that because I was told about). |
Do you know for what reason? This doesn't really sound like something we can fix unless we sign the installers or something (ref #10336) |
I was finally able to install UV with the .ps1 installer with Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
irm https://astral.sh/uv/install.ps1 -OutFile install-uv.ps1
iex .\install-uv.ps1 So it might just be that what does not like the security software is only the |
It might be useful to improve the documentation. About this and also not using short Powershell aliases. I guess very few people know "irm" and "iex" so it is really "copy paste this command that you don't understand". The longer version with few steps and with a local (and checkable) |
We have a user try to install this and our AV blocked it as well. The specific error was "The application powershell.exe attempted to execute fileless content that contains known malware. This content performs highly suspicious process injection behavior." I'm trying to figure out what specifically in there it flagged as known malware, but I don't have anything specific at this point. |
It seems to indicate that it can be an issue with |
In https://docs.astral.sh/uv/getting-started/installation/#installation-methods, the given install command is currently for Windows
I was not able to run this because of a security software.
However, I was able to follow the installation instructions "Install via Scoop:" in https://pipx.pypa.io/stable/installation/ for which one needs to execute:
Therefore, I guess installation instructions for UV (or the script I don't know) could be improved to avoid such security blockage.
The text was updated successfully, but these errors were encountered: