Skip to content

Commit a1739a7

Browse files
techicodelstein
authored andcommitted
linux instructions update to /InvokeAI folder name
1 parent 893bdca commit a1739a7

1 file changed

Lines changed: 18 additions & 18 deletions

File tree

docs/installation/INSTALL_LINUX.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -16,35 +16,35 @@
1616
After installing anaconda, you should log out of your system and log back in. If the installation
1717
worked, your command prompt will be prefixed by the name of the current anaconda environment - `(base)`.
1818

19-
3. Copy the stable-diffusion source code from GitHub:
19+
3. Copy the InvokeAI source code from GitHub:
2020

2121
```
22-
(base) ~$ git clone https://github.com/lstein/stable-diffusion.git
22+
(base) ~$ git clone https://github.com/invoke-ai/InvokeAI.git
2323
```
2424

25-
This will create stable-diffusion folder where you will follow the rest of the steps.
25+
This will create InvokeAI folder where you will follow the rest of the steps.
2626

27-
4. Enter the newly-created stable-diffusion folder. From this step forward make sure that you are working in the stable-diffusion directory!
27+
4. Enter the newly-created InvokeAI folder. From this step forward make sure that you are working in the InvokeAI directory!
2828

2929
```
30-
(base) ~$ cd stable-diffusion
31-
(base) ~/stable-diffusion$
30+
(base) ~$ cd InvokeAI
31+
(base) ~/InvokeAI$
3232
```
3333

3434
5. Use anaconda to copy necessary python packages, create a new python environment named `ldm` and activate the environment.
3535

3636
```
37-
(base) ~/stable-diffusion$ conda env create -f environment.yaml
38-
(base) ~/stable-diffusion$ conda activate ldm
39-
(ldm) ~/stable-diffusion$
37+
(base) ~/InvokeAI$ conda env create -f environment.yaml
38+
(base) ~/InvokeAI$ conda activate ldm
39+
(ldm) ~/InvokeAI$
4040
```
4141

4242
After these steps, your command prompt will be prefixed by `(ldm)` as shown above.
4343

4444
6. Load a couple of small machine-learning models required by stable diffusion:
4545

4646
```
47-
(ldm) ~/stable-diffusion$ python3 scripts/preload_models.py
47+
(ldm) ~/InvokeAI$ python3 scripts/preload_models.py
4848
```
4949

5050
Note that this step is necessary because I modified the original just-in-time model loading scheme to allow the script to work on GPU machines that are not internet connected. See [Preload Models](../features/OTHER.md#preload-models)
@@ -59,31 +59,31 @@ Note that this step is necessary because I modified the original just-in-time mo
5959
Now run the following commands from within the stable-diffusion directory. This will create a symbolic link from the stable-diffusion model.ckpt file, to the true location of the sd-v1-4.ckpt file.
6060

6161
```
62-
(ldm) ~/stable-diffusion$ mkdir -p models/ldm/stable-diffusion-v1
63-
(ldm) ~/stable-diffusion$ ln -sf /path/to/sd-v1-4.ckpt models/ldm/stable-diffusion-v1/model.ckpt
62+
(ldm) ~/InvokeAI$ mkdir -p models/ldm/stable-diffusion-v1
63+
(ldm) ~/InvokeAI$ ln -sf /path/to/sd-v1-4.ckpt models/ldm/stable-diffusion-v1/model.ckpt
6464
```
6565

6666
8. Start generating images!
6767

6868
```
6969
# for the pre-release weights use the -l or --liaon400m switch
70-
(ldm) ~/stable-diffusion$ python3 scripts/dream.py -l
70+
(ldm) ~/InvokeAI$ python3 scripts/dream.py -l
7171
7272
# for the post-release weights do not use the switch
73-
(ldm) ~/stable-diffusion$ python3 scripts/dream.py
73+
(ldm) ~/InvokeAI$ python3 scripts/dream.py
7474
7575
# for additional configuration switches and arguments, use -h or --help
76-
(ldm) ~/stable-diffusion$ python3 scripts/dream.py -h
76+
(ldm) ~/InvokeAI$ python3 scripts/dream.py -h
7777
```
7878

79-
9. Subsequently, to relaunch the script, be sure to run "conda activate ldm" (step 5, second command), enter the `stable-diffusion` directory, and then launch the dream script (step 8). If you forget to activate the ldm environment, the script will fail with multiple `ModuleNotFound` errors.
79+
9. Subsequently, to relaunch the script, be sure to run "conda activate ldm" (step 5, second command), enter the `InvokeAI` directory, and then launch the dream script (step 8). If you forget to activate the ldm environment, the script will fail with multiple `ModuleNotFound` errors.
8080

8181
### Updating to newer versions of the script
8282

83-
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:
83+
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:
8484

8585
```
86-
(ldm) ~/stable-diffusion$ git pull
86+
(ldm) ~/InvokeAI$ git pull
8787
```
8888

8989
This will bring your local copy into sync with the remote one.

0 commit comments

Comments
 (0)