From 3ea28cf00e158030cd46e25ac760f86a56d60cc3 Mon Sep 17 00:00:00 2001 From: ParisNeo Date: Thu, 27 Apr 2023 20:22:26 +0200 Subject: [PATCH] Added advanced installation guide --- docs/AdvancedInstallInstructions.md | 126 ++++++++++++++++++++++++++++ 1 file changed, 126 insertions(+) create mode 100644 docs/AdvancedInstallInstructions.md diff --git a/docs/AdvancedInstallInstructions.md b/docs/AdvancedInstallInstructions.md new file mode 100644 index 00000000..29ff6ab4 --- /dev/null +++ b/docs/AdvancedInstallInstructions.md @@ -0,0 +1,126 @@ +### Manual Simple install: + +1. Download this repository .zip: + +![image](https://user-images.githubusercontent.com/80409979/232210909-0ce3dc80-ed34-4b32-b828-e124e3df3ff1.png) + +2. Extract contents into a folder. +3. Install/run application by double clicking on `webui.bat` file from Windows Explorer as normal user. + +### Manual Advanced mode: + +1. Install [git](https://git-scm.com/download/win). +2. Open Terminal/PowerShell and navigate to a folder you want to clone this repository. + +```bash +git clone https://github.com/nomic-ai/gpt4all-ui.git +``` + +4. Install/run application by double clicking on `webui.bat` file from Windows explorer as normal user. + +## Linux + +### Automatic install + +1. Make sure you have installed `curl`. It is needed for the one-liner to work. + +`Debian-based:` +``` +sudo apt install curl +``` +`Red Hat-based:` +``` +sudo dnf install curl +``` +`Arch-based:` +``` +sudo pacman -S curl +``` +2. Open terminal/console copy and paste this command and press enter: +``` +mkdir -p ~/gpt4all-ui && curl -L https://raw.githubusercontent.com/nomic-ai/gpt4all-ui/main/webui.sh -o ~/gpt4all-ui/webui.sh && chmod +x ~/gpt4all-ui/webui.sh && cd ~/gpt4all-ui && ./webui.sh +``` +> **Note** +> +> This command creates new directory `/gpt4all-ui/` in your /home/ direcory, downloads a file [webui.sh](https://raw.githubusercontent.com/nomic-ai/gpt4all-ui/main/webui.sh), makes file executable and executes webui.sh that downloads and installs everything that is needed. + +3. Follow instructions on screen until it launches webui. +4. To relaunch application: +``` +bash webui.sh +``` + +### Manual Simple install: + +1. Download this repository .zip: + +![image](https://user-images.githubusercontent.com/80409979/232210909-0ce3dc80-ed34-4b32-b828-e124e3df3ff1.png) + +2. Extract contents into a folder. +3. Install/run application from terminal/console: +``` +bash webui.sh +``` +### Manual Advanced mode: + +1. Open terminal/console and install dependencies: + +`Debian-based:` +``` +sudo apt install curl git python3 python3-venv +``` +`Red Hat-based:` +``` +sudo dnf install curl git python3 +``` +`Arch-based:` +``` +sudo pacman -S curl git python3 +``` + +2. Clone repository: + +```bash +git clone https://github.com/nomic-ai/gpt4all-ui.git +``` +```bash +cd gpt4all-ui +``` + +3. Install/run application: + +```bash +bash ./webui.sh +``` + +## MacOS + +1. Open terminal/console and install `brew`: + +``` +$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" +``` + +2. Install dependencies: + +``` +brew install git python3 +``` + +3. Clone repository: + +```bash +git clone https://github.com/nomic-ai/gpt4all-ui.git +``` +```bash +cd gpt4all-ui +``` + +4. Install/run application: + +```bash +bash ./webui.sh +``` + +On Linux/MacOS, if you have issues, refer to the details presented [here](docs/Linux_Osx_Install.md) +These scripts will create a Python virtual environment and install the required dependencies. It will also download the models and install them.