Files
InvokeAI/docs/installation/deprecated_documentation/INSTALL_JUPYTER.md
Lincoln Stein f7170e4156 improve installation documentation
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.
2022-12-16 10:26:02 +13:00

1.2 KiB

title
title
Running InvokeAI on Google Colab using a Jupyter Notebook

Introduction

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 "you will need NVIDIA drivers, Python 3.10, and Git installed beforehand"

Running Online On Google Colabotary

Open in Colab

Running Locally (Cloning)

  1. Install the Jupyter Notebook python library (one-time): pip install jupyter

  2. Clone the InvokeAI repository: git clone https://github.com/invoke-ai/InvokeAI.git cd invoke-ai

  3. Create a virtual environment using conda: conda create -n invoke jupyter

  4. Activate the environment and start the Jupyter notebook: conda activate invoke jupyter notebook