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: docs/contributing/dev-environment.md
+29-26Lines changed: 29 additions & 26 deletions
Original file line number
Diff line number
Diff line change
@@ -17,46 +17,49 @@ If you just want to use Invoke, you should use the [installer][installer link].
17
17
## Setup
18
18
19
19
1. Run through the [requirements][requirements link].
20
-
1.[Fork and clone][forking link] the [InvokeAI repo][repo link].
21
-
1. Create an directory for user data (images, models, db, etc). This is typically at `~/invokeai`, but if you already have a non-dev install, you may want to create a separate directory for the dev install.
22
-
1. Create a python virtual environment inside the directory you just created:
20
+
2.[Fork and clone][forking link] the [InvokeAI repo][repo link].
21
+
3. Create an directory for user data (images, models, db, etc). This is typically at `~/invokeai`, but if you already have a non-dev install, you may want to create a separate directory for the dev install.
22
+
4. Create a python virtual environment inside the directory you just created:
23
23
24
-
```sh
25
-
python3 -m venv .venv --prompt InvokeAI-Dev
26
-
```
24
+
```sh
25
+
python3 -m venv .venv --prompt InvokeAI-Dev
26
+
```
27
27
28
-
1. Activate the venv (you'll need to do this every time you want to run the app):
28
+
5. Activate the venv (you'll need to do this every time you want to run the app):
29
29
30
-
```sh
31
-
source .venv/bin/activate
32
-
```
30
+
```sh
31
+
source .venv/bin/activate
32
+
```
33
33
34
-
1. Install the repo as an [editable install][editable install link]:
34
+
6. Install the repo as an [editable install][editable install link]:
Refer to the [manual installation][manual install link]] instructions for more determining the correct install options. `xformers` is optional, but `dev` and `test` are not.
40
+
Refer to the [manual installation][manual install link]] instructions for more determining the correct install options. `xformers` is optional, but `dev` and `test` are not.
0 commit comments