-
-
Notifications
You must be signed in to change notification settings - Fork 11k
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
Installing on Windows with winget #4005
Conversation
|
||
```bash | ||
winget install scrcpy | ||
winget install adb # if you don't have it yet |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is adb
available via Winget? I did not found it in https://github.com/microsoft/winget-pkgs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
winget install scrcpy
should be enough, it uses the official Windows release which already includes adb.exe.
adb does exist in winget repository, but can only be installed by its ID:
winget install Google.PlatformTools
EDIT: I verified it will use the bundled adb.exe, however the execution alias (symlink) doesn't work
Maybe an issue with winget itself, or the symlink confused scrcpy making it can't find its dlls?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, so I will just remove the line about adb.
Do you know if it is necessary to install adb separately with scoop and chocolatey package managers, or if the scrcpy package is sufficient?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know, I don't use other package managers.
Thank you, merged: 958f224 (I removed the line about |
My bad about |
No description provided.