40 lines
1.2 KiB
Batchfile
40 lines
1.2 KiB
Batchfile
python -m venv venv
|
|
call "venv\Scripts\activate.bat"
|
|
echo should be in venv here
|
|
cd .
|
|
python -m pip install --upgrade pip
|
|
pip install torch==2.1.0+cu121 torchvision==0.16.0+cu121 --extra-index-url "https://download.pytorch.org/whl/cu121"
|
|
pip install -U transformers==4.35.0
|
|
pip install -U diffusers[torch]==0.23.1
|
|
pip install pynvml==11.4.1
|
|
pip install -U pip install -U https://github.com/jllllll/bitsandbytes-windows-webui/releases/download/wheels/bitsandbytes-0.41.1-py3-none-win_amd64.whl
|
|
pip install ftfy==6.1.1
|
|
pip install aiohttp==3.8.4
|
|
pip install tensorboard>=2.11.0
|
|
pip install protobuf==3.20.1
|
|
pip install wandb==0.15.3
|
|
pip install pyre-extensions==0.0.29
|
|
pip install -U xformers==0.0.22.post7
|
|
pip install pytorch-lightning==1.6.5
|
|
pip install OmegaConf==2.2.3
|
|
pip install numpy>=1.23.5
|
|
pip install lion-pytorch
|
|
pip install compel~=1.1.3
|
|
pip install dadaptation
|
|
pip install safetensors
|
|
pip install prodigyopt
|
|
pip install torchsde
|
|
pip install --no-deps open-flamingo==2.0.1
|
|
pip install einops
|
|
pip install einops-exts
|
|
pip install open-clip-torch
|
|
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
|
|
pause
|