OpenAdapt icon indicating copy to clipboard operation
OpenAdapt copied to clipboard

Support winget

Open abrichr opened this issue 1 year ago • 1 comments

Feature request

On Windows 11, we can do:

winget install --id Git.Git -e --source winget
winget install -i Python.Python.3.10
winget install --id=UB-Mannheim.TesseractOCR  -e

Motivation

Simplify installation

abrichr avatar Apr 18 '24 13:04 abrichr

One line:

 winget install --id Git.Git -e --source winget; winget install -i Python.Python.3.10; winget install --id=UB-Mannheim.TesseractOCR -e

With auto-accept:

winget install --id Git.Git -e --source winget --accept-source-agreements --accept-package-agreements; winget install -i Python.Python.3.10 --accept-source-agreements --accept-package-agreements; winget install --id=UB-Mannheim.TesseractOCR -e --accept-source-agreements --accept-package-agreements

abrichr avatar Apr 19 '24 17:04 abrichr