You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 invoke script (step 8). If you forget to activate the ldm environment, the script will fail with multiple `ModuleNotFound` errors.
101
+
9. Subsequently, to relaunch the script, be sure to run "conda activate invokeai" (step 5, second command), enter the `InvokeAI` directory, and then launch the invoke script (step 8). If you forget to activate the 'invokeai' environment, the script will fail with multiple `ModuleNotFound` errors.
102
102
103
103
## Updating to newer versions of the script
104
104
105
105
106
106
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:
107
107
108
108
```
109
-
(ldm) ~/InvokeAI$ git pull
109
+
(invokeai) ~/InvokeAI$ git pull
110
110
```
111
111
112
112
This will bring your local copy into sync with the remote one.
Copy file name to clipboardExpand all lines: docs/installation/INSTALL_WINDOWS.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -56,9 +56,9 @@ cd InvokeAI
56
56
57
57
```
58
58
conda env create (step 6a)
59
-
conda activate ldm (step 6b)
59
+
conda activate invokeai (step 6b)
60
60
```
61
-
This will install all python requirements and activate the "ldm" environment
61
+
This will install all python requirements and activate the "invokeai" environment
62
62
which sets PATH and other environment variables properly.
63
63
64
64
Note that the long form of the first command is `conda env create -f environment.yml`. If the
@@ -107,7 +107,7 @@ you may instead create a shortcut to it from within `models\ldm\stable-diffusion
107
107
python scripts\invoke.py
108
108
```
109
109
110
-
10. Subsequently, to relaunch the script, first activate the Anaconda command window (step 3),enter the InvokeAI directory (step 5, `cd \path\to\InvokeAI`), run `conda activate ldm` (step 6b), and then launch the invoke script (step 9).
110
+
10. Subsequently, to relaunch the script, first activate the Anaconda command window (step 3),enter the InvokeAI directory (step 5, `cd \path\to\InvokeAI`), run `conda activate invokeai` (step 6b), and then launch the invoke script (step 9).
111
111
112
112
**Note:** Tildebyte has written an alternative
113
113
["Easy peasy Windows install"](https://github.com/invoke-ai/InvokeAI/wiki/Easy-peasy-Windows-install)
Copy file name to clipboardExpand all lines: notebooks/Stable-Diffusion-local-Windows.ipynb
+7-7
Original file line number
Diff line number
Diff line change
@@ -52,22 +52,22 @@
52
52
"outputs": [],
53
53
"source": [
54
54
"%%cmd\n",
55
-
"pew new --python 3.10 -r requirements-lin-win-colab-CUDA.txt --dont-activate invoke-ai"
55
+
"pew new --python 3.10 -r requirements-lin-win-colab-CUDA.txt --dont-activate invokeai"
56
56
]
57
57
},
58
58
{
59
59
"cell_type": "markdown",
60
60
"metadata": {},
61
61
"source": [
62
-
"# Switch the notebook kernel to the new 'invoke-ai' environment!\n",
62
+
"# Switch the notebook kernel to the new 'invokeai' environment!\n",
63
63
"\n",
64
64
"## VSCode: restart VSCode and come back to this cell\n",
65
65
"\n",
66
66
"1. Ctrl+Shift+P\n",
67
67
"1. Type \"Select Interpreter\" and select \"Jupyter: Select Interpreter to Start Jupyter Server\"\n",
68
68
"1. VSCode will say that it needs to install packages. Click the \"Install\" button.\n",
69
69
"1. Once the install is finished, do 1 & 2 again\n",
70
-
"1. Pick 'invoke-ai'\n",
70
+
"1. Pick 'invokeai'\n",
71
71
"1. Run the following cell"
72
72
]
73
73
},
@@ -88,7 +88,7 @@
88
88
"## Jupyter/JupyterLab\n",
89
89
"\n",
90
90
"1. Run the cell below\n",
91
-
"1. Click on the toolbar where it says \"(ipyknel)\" ↗️. You should get a pop-up asking you to \"Select Kernel\". Pick 'invoke-ai' from the drop-down.\n"
91
+
"1. Click on the toolbar where it says \"(ipyknel)\" ↗️. You should get a pop-up asking you to \"Select Kernel\". Pick 'invokeai' from the drop-down.\n"
92
92
]
93
93
},
94
94
{
@@ -106,9 +106,9 @@
106
106
"source": [
107
107
"# DO NOT RUN THIS CELL IF YOU ARE USING VSCODE!!\n",
108
108
"%%cmd\n",
109
-
"pew workon invoke-ai\n",
109
+
"pew workon invokeai\n",
110
110
"pip3 install ipykernel\n",
111
-
"python -m ipykernel install --name=invoke-ai"
111
+
"python -m ipykernel install --name=invokeai"
112
112
]
113
113
},
114
114
{
@@ -183,7 +183,7 @@
183
183
"Now:\n",
184
184
"\n",
185
185
"1. `cd` to wherever the 'InvokeAI' directory is\n",
0 commit comments