From 323aaa074ff4b5dc1f2bb50810ae736550614eb2 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Fri, 13 Jan 2023 01:29:36 -0300 Subject: [PATCH] Installation instructions --- README.md | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a8dbb33a..193fd2bb 100644 --- a/README.md +++ b/README.md @@ -21,26 +21,34 @@ Its goal is to become the [AUTOMATIC1111/stable-diffusion-webui](https://github. ## Installation -1. You need to have the conda environment manager installed into your system. If you don't have it already, get it here: [miniconda download](https://docs.conda.io/en/latest/miniconda.html). +1. You need to have the conda environment manager installed into your system. If you don't have it already, [get miniconda here](https://docs.conda.io/en/latest/miniconda.html). 2. Then open a terminal window and create a conda environment: - conda create -n textgen - conda activate textgen +``` +conda create -n textgen +conda activate textgen +``` 3. Install the appropriate pytorch. For NVIDIA GPUs, this should work: - conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia +``` +conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia +``` For AMD GPUs, you need the ROCm version of pytorch. For running exclusively on the CPU, you just need the stock pytorch and this should probably work: - conda install pytorch torchvision torchaudio -c pytorch +``` +conda install pytorch torchvision torchaudio -c pytorch +``` 4. Clone or download this repository, and then `cd` into its directory from your terminal window. 5. Install the required Python libraries: - pip install -r requirements.txt +``` +pip install -r requirements.txt +``` After these steps, you should be able to start the webui, but first you need to download some model to load.