Skip to content

Latest commit

 

History

History
127 lines (95 loc) · 2.89 KB

AdvancedInstallInstructions.md

File metadata and controls

127 lines (95 loc) · 2.89 KB

Windows 10 and 11

Manual Simple install:

  1. Download this repository .zip:

image

  1. Extract contents into a folder.
  2. Install/run application by double clicking on webui.bat file from Windows Explorer as normal user.

Manual Advanced mode:

  1. Install git.
  2. Open Terminal/PowerShell and navigate to a folder you want to clone this repository.
git clone https://github.com/nomic-ai/gpt4all-ui.git
  1. 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 
  1. 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, makes file executable and executes webui.sh that downloads and installs everything that is needed.

  1. Follow instructions on screen until it launches webui.
  2. To relaunch application:
bash webui.sh

Manual Simple install:

  1. Download this repository .zip:

image

  1. Extract contents into a folder.
  2. 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
  1. Clone repository:
git clone https://github.com/nomic-ai/gpt4all-ui.git
cd gpt4all-ui
  1. Install/run application:
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)"
  1. Install dependencies:
brew install git python3
  1. Clone repository:
git clone https://github.com/nomic-ai/gpt4all-ui.git
cd gpt4all-ui
  1. Install/run application:
bash ./webui.sh

On Linux/MacOS, if you have issues, refer to the details presented here These scripts will create a Python virtual environment and install the required dependencies. It will also download the models and install them.