16 lines
384 B
Batchfile
16 lines
384 B
Batchfile
@echo off
|
|
|
|
set PATH=C:\Windows\System32;%PATH%
|
|
|
|
@call installer\Scripts\activate.bat
|
|
|
|
@call conda-unpack
|
|
|
|
@call conda install -y cudatoolkit=11.3
|
|
@call pip install torch==1.12.1+cu113 --extra-index-url https://download.pytorch.org/whl/cu113
|
|
@call pip3 install -U lama-cleaner
|
|
|
|
|
|
@call lama-cleaner --config-installer --installer-config %0\..\installer_config.json
|
|
|
|
PAUSE |