1. Added a big fat warning to the Windows installer to tell user to install Visual C++ redistributable. 2. Added a bit fat warning to the automated installer doc to tell user the same thing. 3. Reordered entries on the table-of-contents sidebar for installation to prioritize the most important docs. 4. Moved older installation documentation into deprecated folder. 5. Moved developer-specific installation documentation into the developers folder.
4.3 KiB
title
| title |
|---|
| Manual Installation, Linux |
:fontawesome-brands-linux: Linux
Installation
-
You will need to install the following prerequisites if they are not already available. Use your operating system's preferred installer.
- Python (version 3.8.5 recommended; higher may work)
- git
-
Install the Python Anaconda environment manager.
~$ wget https://repo.anaconda.com/archive/Anaconda3-2022.05-Linux-x86_64.sh ~$ chmod +x Anaconda3-2022.05-Linux-x86_64.sh ~$ ./Anaconda3-2022.05-Linux-x86_64.shAfter installing anaconda, you should log out of your system and log back in. If the installation worked, your command prompt will be prefixed by the name of the current anaconda environment -
(base). -
Copy the InvokeAI source code from GitHub:
(base) ~$ git clone https://github.com/invoke-ai/InvokeAI.gitThis will create InvokeAI folder where you will follow the rest of the steps.
-
Enter the newly-created InvokeAI folder. From this step forward make sure that you are working in the InvokeAI directory!
(base) ~$ cd InvokeAI (base) ~/InvokeAI$ -
Use anaconda to copy necessary python packages, create a new python environment named
invokeaiand then activate the environment.!!! todo "For systems with a CUDA (Nvidia) card:"
(base) rm -rf src # (this is a precaution in case there is already a src directory) (base) ~/InvokeAI$ conda env create -f environment-cuda.yml (base) ~/InvokeAI$ conda activate invokeai (invokeai) ~/InvokeAI$!!! todo "For systems with an AMD card (using ROCm driver):"
(base) rm -rf src # (this is a precaution in case there is already a src directory) (base) ~/InvokeAI$ conda env create -f environment-AMD.yml (base) ~/InvokeAI$ conda activate invokeai (invokeai) ~/InvokeAI$After these steps, your command prompt will be prefixed by
(invokeai)as shown above. -
Load the big stable diffusion weights files and a couple of smaller machine-learning models:
(invokeai) ~/InvokeAI$ python3 scripts/configure_invokeai.py!!! note
This script will lead you through the process of creating an account on Hugging Face, accepting the terms and conditions of the Stable Diffusion model license, and obtaining an access token for downloading. It will then download and install the weights files for you. Please look [here](../INSTALL_MANUAL.md) for a manual process for doing the same thing. -
Start generating images!
!!! todo "Run InvokeAI!"
!!! warning "IMPORTANT" Make sure that the conda environment is activated, which should create `(invokeai)` in front of your prompt! === "CLI" ```bash python scripts/invoke.py ``` === "local Webserver" ```bash python scripts/invoke.py --web ``` === "Public Webserver" ```bash python scripts/invoke.py --web --host 0.0.0.0 ``` To use an alternative model you may invoke the `!switch` command in the CLI, or pass `--model <model_name>` during `invoke.py` launch for either the CLI or the Web UI. See [Command Line Client](../../features/CLI.md#model-selection-and-importation). The model names are defined in `configs/models.yaml`. -
Subsequently, to relaunch the script, be sure to run "conda activate invokeai" (step 5, second command), enter the
InvokeAIdirectory, and then launch the invoke script (step 8). If you forget to activate the 'invokeai' environment, the script will fail with multipleModuleNotFounderrors.
Updating to newer versions of the script
This distribution is changing rapidly. If you used the git clone method
(step 5) to download the InvokeAI directory, then to update to the latest and
greatest version, launch the Anaconda window, enter InvokeAI and type:
(invokeai) ~/InvokeAI$ git pull
(invokeai) ~/InvokeAI$ rm -rf src # prevents conda freezing errors
(invokeai) ~/InvokeAI$ conda env update -f environment.yml
This will bring your local copy into sync with the remote one.