mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2024-12-12 16:47:28 +01:00
3b42f31137
Pre-emptive change for people who may have existing K: drives. B: is never used unless its by programs like ours which is very rare. The installer now always installs as B:, but to maintain compatibility with older runtimes the scripts check if its K: or B:.
29 lines
673 B
Batchfile
29 lines
673 B
Batchfile
@echo off
|
|
cd %~dp0
|
|
TITLE Jupyter for KoboldAI Runtime
|
|
SET /P M=<loader.settings
|
|
IF %M%==1 GOTO drivemap
|
|
IF %M%==2 GOTO subfolder
|
|
IF %M%==3 GOTO drivemap_B
|
|
|
|
:subfolder
|
|
umamba.exe install --no-shortcuts -r miniconda3 -n base -c conda-forge jupyter
|
|
call miniconda3\condabin\activate
|
|
jupyter notebook
|
|
cmd /k
|
|
|
|
:drivemap
|
|
subst K: miniconda3 >nul
|
|
umamba.exe install --no-shortcuts -r K:\python\ -n base -c conda-forge jupyter
|
|
call K:\python\condabin\activate
|
|
jupyter notebook
|
|
subst K: /D
|
|
cmd /k
|
|
|
|
:drivemap_B
|
|
subst B: miniconda3 >nul
|
|
umamba.exe install --no-shortcuts -r B:\python\ -n base -c conda-forge jupyter
|
|
call B:\python\condabin\activate
|
|
jupyter notebook
|
|
subst B: /D
|
|
cmd /k |