EveryDream2trainer/windows_setup.cmd

36 lines
1.3 KiB
Batchfile
Raw Normal View History

2022-12-17 21:02:05 -07:00
python -m venv venv
call "venv\Scripts\activate.bat"
2022-12-17 23:21:35 -07:00
echo should be in venv here
cd .
2022-12-17 21:02:05 -07:00
python -m pip install --upgrade pip
2022-12-29 19:11:06 -07:00
pip install torch==1.12.1+cu116 torchvision==0.13.1+cu116 --extra-index-url "https://download.pytorch.org/whl/cu116"
2023-05-26 19:54:02 -06:00
pip install -U transformers==4.27.1
pip install -U diffusers[torch]==0.14.0
2022-12-17 21:02:05 -07:00
pip install pynvml==11.4.1
2023-05-26 19:54:02 -06:00
pip install -U https://github.com/victorchall/everydream-whls/raw/main/bitsandbytes-0.38.1-py2.py3-none-any.whl
2022-12-17 21:02:05 -07:00
git clone https://github.com/DeXtmL/bitsandbytes-win-prebuilt tmp/bnb_cache
pip install ftfy==6.1.1
pip install aiohttp==3.8.3
pip install tensorboard>=2.11.0
2022-12-18 15:21:13 -07:00
pip install protobuf==3.20.1
pip install wandb==0.14.0
2022-12-17 23:21:35 -07:00
pip install pyre-extensions==0.0.23
2022-12-17 21:02:05 -07:00
pip install -U -I --no-deps https://github.com/C43H66N12O12S2/stable-diffusion-webui/releases/download/f/xformers-0.0.14.dev0-cp310-cp310-win_amd64.whl
::pip install "xformers-0.0.15.dev0+affe4da.d20221212-cp38-cp38-win_amd64.whl" --force-reinstall
pip install pytorch-lightning==1.6.5
pip install OmegaConf==2.2.3
2022-12-18 11:03:44 -07:00
pip install numpy==1.23.5
2023-01-11 22:40:49 -07:00
pip install keyboard
2023-02-25 14:36:04 -07:00
pip install lion-pytorch
pip install compel~=1.1.3
2022-12-17 21:02:05 -07:00
python utils/patch_bnb.py
python utils/get_yamls.py
GOTO :eof
:ERROR
echo Something blew up. Make sure Pyton 3.10.x is installed and in your PATH.
:eof
ECHO done
2023-02-18 20:33:28 -07:00
pause