From 9760c159fd491cf1e3af4455cd0752d4854782b0 Mon Sep 17 00:00:00 2001 From: henk717 Date: Thu, 19 Aug 2021 16:20:41 +0200 Subject: [PATCH] Allow using Jupyter inside the KoboldAI environment Not used by the game, but can be useful for running and troubleshooting notebook features. --- notebook.bat | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 notebook.bat diff --git a/notebook.bat b/notebook.bat new file mode 100644 index 00000000..b5b44948 --- /dev/null +++ b/notebook.bat @@ -0,0 +1,20 @@ +@echo off +cd %~dp0 +TITLE Jupyter for KoboldAI Runtime +SET /P M=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 \ No newline at end of file