Additional batch scripts
Can't hurt to have these, it allows users to more easily access both the runtime and the remote play functionality. (I also frequently create these myself for developing).
This commit is contained in:
parent
cde965209b
commit
41ec01f654
|
@ -0,0 +1,16 @@
|
|||
@echo off
|
||||
cd %~dp0
|
||||
TITLE CMD for KoboldAI Runtime
|
||||
SET /P M=<loader.settings
|
||||
IF %M%==1 GOTO drivemap
|
||||
IF %M%==2 GOTO subfolder
|
||||
|
||||
:subfolder
|
||||
umamba.exe install --no-shortcuts -r miniconda3 -n base -c conda-forge cython pip
|
||||
call miniconda3\condabin\activate
|
||||
cmd /k
|
||||
|
||||
:drivemap
|
||||
subst K: miniconda3 >nul
|
||||
call K:\python\condabin\activate
|
||||
cmd /k
|
|
@ -0,0 +1 @@
|
|||
play --remote %*
|
Loading…
Reference in New Issue