Fix some windows dependency issues

This commit is contained in:
Jaret Burkett
2023-08-05 20:28:49 -06:00
parent 8c90fa86c6
commit 64fbd4c92a
3 changed files with 9 additions and 2 deletions

View File

@@ -29,7 +29,9 @@ cd ai-toolkit
git submodule update --init --recursive
python3 -m venv venv
source venv/bin/activate
# or source venv/Scripts/activate on windows
# .\venv\Scripts\activate on windows
# windows install pytorch first with
# pip3 install torch torchvision --index-url https://download.pytorch.org/whl/cu117
pip3 install -r requirements.txt
```