4.2 KiB
title |
---|
Manual Installation, Windows |
:fontawesome-brands-windows: Windows
Notebook install (semi-automated)
We have a Jupyter notebook with cell-by-cell installation steps. It will download the code in this repo as one of the steps, so instead of cloning this repo, simply download the notebook from the link above and load it up in VSCode (with the appropriate extensions installed)/Jupyter/JupyterLab and start running the cells one-by-one.
Note that you will need NVIDIA drivers, Python 3.10, and Git installed beforehand - simplified step-by-step instructions are available in the wiki (you'll only need steps 1, 2, & 3 ).
Manual Install
pip
See Easy-peasy Windows install in the wiki
Conda
-
Install Anaconda3 (miniconda3 version) from here
-
Install Git from here
-
Launch Anaconda from the Windows Start menu. This will bring up a command window. Type all the remaining commands in this window.
-
Run the command:
git clone https://github.com/invoke-ai/InvokeAI.git
This will create stable-diffusion 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!
cd InvokeAI
-
Run the following two commands:
conda env create
conda activate invokeai
This will install all python requirements and activate the "invokeai" environment which sets PATH and other environment variables properly.
Note that the long form of the first command is
conda env create -f environment.yml
. If the environment file isn't specified, conda will default toenvironment.yml
. You will need to provide the-f
option if you wish to load a different environment file at any point. -
Run the command:
python scripts\preload_models.py
This installs several machine learning models that stable diffusion requires.
Note: This step is required. This was done because some users may might be blocked by firewalls or have limited internet connectivity for the models to be downloaded just-in-time.
-
Now you need to install the weights for the big stable diffusion model.
- Sign up at https://huggingface.co
- Go to the Stable diffusion diffusion model page
- Accept the terms and click Access Repository
- Download v1-5-pruned-emaonly.ckpt (4.27 GB)
and move it into this directory under
models/ldm/stable_diffusion_v1/v1-5-pruned-emaonly.ckpt
There are many other models that you can use. Please see [../features/INSTALLING_MODELS.md] for details.
-
Start generating images!
python scripts\invoke.py -l
python scripts\invoke.py
-
Subsequently, to relaunch the script, first activate the Anaconda command window (step 3),enter the InvokeAI directory (step 5,
cd \path\to\InvokeAI
), runconda activate invokeai
(step 6b), and then launch the invoke script (step 9).
!!! tip "Tildebyte has written an alternative"
["Easy peasy Windows install"](https://github.com/invoke-ai/InvokeAI/wiki/Easy-peasy-Windows-install)
which uses the Windows Powershell and pew. If you are having trouble with
Anaconda on Windows, give this a try (or try it first!)
This distribution is changing rapidly. If you used the git clone
method
(step 5) to download the stable-diffusion directory, then to update to the
latest and greatest version, launch the Anaconda window, enter
stable-diffusion
, and type:
git pull
conda env update
This will bring your local copy into sync with the remote one.