Skip to content

Commit 54f01ed

Browse files
authored
Merge pull request #1835 from bghira/chore/tutorial-branch-name
tutorial: update installation source to pip
2 parents 98fa571 + ecbe11b commit 54f01ed

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

documentation/webui/TUTORIAL.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,21 @@ apt -y install python3.12-venv python3.12-dev
1313
apt -y install libopenmpi-dev openmpi-bin cuda-toolkit-12-8 libaio-dev # if you're using DeepSpeed
1414
```
1515

16-
## Installing SimpleTuner
16+
## Creating a workspace directory
1717

18-
> **NOTE:** Currently, we're installing from the webui-phase-one branch. This will be merged into main soon, at which time you can simply `pip install simpletuner[cuda]` for a streamlined experience.
18+
A workspace contains your configurations, output models, validation images, and potentially your datasets.
1919

2020
```bash
21-
git clone --branch=feature/webui-phase-one https://github.com/bghira/SimpleTuner
21+
mkdir ~/simpletuner-workspace
22+
export SIMPLETUNER_WORKSPACE=~/simpletuner-workspace
23+
cd $SIMPLETUNER_WORKSPACE
2224
```
2325

26+
## Installing SimpleTuner into your workspace
27+
28+
Create a virtual environment to install dependencies to:
29+
2430
```bash
25-
cd SimpleTuner/
2631
python3.12 -m venv .venv
2732
. .venv/bin/activate
2833
```

0 commit comments

Comments
 (0)