OpenAdaptAI / OpenAdapt

AI-First Process Automation with Large ([Language (LLMs) / Action (LAMs) / Multimodal (LMMs)] / Visual Language (VLMs)) Models
https://www.OpenAdapt.AI
MIT License
735 stars 94 forks source link

Support winget #625

Open abrichr opened 2 months ago

abrichr commented 2 months ago

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 commented 2 months ago

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