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
Copy file name to clipboardExpand all lines: README.md
+196-3Lines changed: 196 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,9 +36,38 @@
36
36
37
37
</div>
38
38
39
-
InvokeAI is a leading creative engine built to empower professionals and enthusiasts alike. Generate and create stunning visual media using the latest AI-driven technologies. InvokeAI offers an industry leading Web Interface, interactive Command Line Interface, and also serves as the foundation for multiple commercial products.
39
+
_**Note: This is an alpha release. Bugs are expected and not all
40
+
features are fully implemented. Please use the GitHub [Issues
**Quick links**: [[How to Install](https://invoke-ai.github.io/InvokeAI/#installation)][<ahref="https://discord.gg/ZmtBAhwWhy">Discord Server</a>][<ahref="https://invoke-ai.github.io/InvokeAI/">Documentation and Tutorials</a>][<ahref="https://github.com/invoke-ai/InvokeAI/">Code and Downloads</a>][<ahref="https://github.com/invoke-ai/InvokeAI/issues">Bug Reports</a>][<ahref="https://github.com/invoke-ai/InvokeAI/discussions">Discussion, Ideas & Q&A</a>]
If upgrading from version 2.3, please read [Migrating a 2.3 root
96
+
directory to 3.0](#migrating-to-3) first.
97
+
66
98
### Automatic Installer (suggested for 1st time users)
67
99
68
100
1. Go to the bottom of the [Latest Release Page](https://github.com/invoke-ai/InvokeAI/releases/latest)
@@ -100,7 +132,168 @@ and go to http://localhost:9090.
100
132
101
133
### Command-Line Installation (for developers and users familiar with Terminals)
102
134
103
-
Please see [InvokeAI Installation Overview](https://invoke-ai.github.io/InvokeAI/installation/) for more details on installing and managing your virtual environment manually.
135
+
You must have Python 3.9 or 3.10 installed on your machine. Earlier or later versions are
136
+
not supported.
137
+
138
+
1. Open a command-line window on your machine. The PowerShell is recommended for Windows.
139
+
2. Create a directory to install InvokeAI into. You'll need at least 15 GB of free space:
140
+
141
+
```terminal
142
+
mkdir invokeai
143
+
````
144
+
145
+
3. Create a virtual environment named `.venv` inside this directory and activate it:
146
+
147
+
```terminal
148
+
cd invokeai
149
+
python -m venv .venv --prompt InvokeAI
150
+
```
151
+
152
+
4. Activate the virtual environment (do it every time you run InvokeAI)
153
+
154
+
_For Linux/Mac users:_
155
+
156
+
```sh
157
+
source .venv/bin/activate
158
+
```
159
+
160
+
_For Windows users:_
161
+
162
+
```ps
163
+
.venv\Scripts\activate
164
+
```
165
+
166
+
5. Install the InvokeAI module and its dependencies. Choose the command suited for your platform & GPU.
0 commit comments