From d0edf5635640299a38fa62a68556f93cd43e283e Mon Sep 17 00:00:00 2001 From: leafspark <78000825+leafspark@users.noreply.github.com> Date: Sun, 4 Aug 2024 16:28:09 -0700 Subject: [PATCH] Created Installation (markdown) --- Installation.md | 56 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 Installation.md diff --git a/Installation.md b/Installation.md new file mode 100644 index 0000000..7d3c0de --- /dev/null +++ b/Installation.md @@ -0,0 +1,56 @@ +## Installation + +### Downloading AutoGGUF + +To get started with AutoGGUF: + +1. Visit the AutoGGUF repository on GitHub +2. Download a prebuilt release or clone the entire repository + +### Setting Up the Environment + +**Running from source**: +1. Create a new Python virtual environment +2. Install required dependencies: + ``` + pip install -r requirements.txt + ``` +3. Run the app: `python src/main.py` or `run.bat` + +**Running a prebuilt release:** +1. Extract the zip, and run AutoGGUF.exe by double clicking or the command line (if you'd like to view real time logs) + +### Configuration + +`AUTOGGUF_LANGUAGE`: sets the language for the app, valid codes below: + +* `en-US`: American English +* `fr-FR`: Metropolitan French +* `zh-CN`: Simplified Chinese +* `es-ES`: Spanish (Spain) +* `hi-IN`: Hindi +* `ru-RU`: Russian +* `uk-UA`: Ukrainian +* `ja-JP`: Japanese +* `de-DE`: German +* `pt-BR`: Brazilian Portuguese +* `ar-SA`: Arabic +* `ko-KR`: Korean +* `it-IT`: Italian +* `tr-TR`: Turkish +* `nl-NL`: Dutch +* `fi-FI`: Finnish +* `bn-BD`: Bengali +* `cs-CZ`: Czech +* `pl-PL`: Polish +* `ro-RO`: Romanian +* `el-GR`: Greek +* `pt-PT`: Portuguese (Portugal) +* `hu-HU`: Hungarian +* `en-GB`: British English +* `fr-CA`: Canadian French +* `en-IN`: Indian English +* `en-CA`: Canadian English +* `zh-TW`: Traditional Chinese (Taiwan) + +`AUTOGGUF_CHECK_BACKEND`: enabled or disabled, can help if you're having network issues for faster load time. \ No newline at end of file