2023-03-31 22:45:04 +00:00
|
|
|
@echo off
|
2023-04-01 10:59:59 +00:00
|
|
|
IF NOT EXIST venv (
|
|
|
|
python -m venv venv
|
|
|
|
) ELSE (
|
|
|
|
echo venv folder already exists, skipping creation...
|
|
|
|
)
|
2023-03-31 22:45:04 +00:00
|
|
|
call .\venv\Scripts\activate.bat
|
|
|
|
|
|
|
|
pip install torch==1.12.1+cu116 torchvision==0.13.1+cu116 --extra-index-url https://download.pytorch.org/whl/cu116
|
|
|
|
pip install --use-pep517 --upgrade -r requirements.txt
|
|
|
|
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
|
|
|
|
|
|
|
|
copy /y .\bitsandbytes_windows\*.dll .\venv\Lib\site-packages\bitsandbytes\
|
|
|
|
copy /y .\bitsandbytes_windows\cextension.py .\venv\Lib\site-packages\bitsandbytes\cextension.py
|
|
|
|
copy /y .\bitsandbytes_windows\main.py .\venv\Lib\site-packages\bitsandbytes\cuda_setup\main.py
|
|
|
|
|
2023-04-01 10:59:59 +00:00
|
|
|
accelerate config
|