Cannot launch start SillyTavern with Extras #29
Labels
🐛Bug
[ISSUE] Ticket describing something that isn't working
🧑💻 In Progress
[ISSUE] Assigned to an issue that is curretly being worked on
❕ Medium Priority
[ISSUE] Needs to be dealt with at some point
OS: Linux (Ubuntu 23.10)
I believe that this code is incorrect:
SillyTavern-Launcher/launcher.sh
Lines 287 to 288 in 8ec79f0
According to
bash
manual,exec
will replace current shell with specified subcommand.This will only launch the first of these commands.
Not sure about all the supported terminals, but in case of
konsole
there is an error:"Could not find binary: " "cd"
.This is probably because
konsole
try to run specified command exactly as a new program. There is also used bash syntax (&&
), so it should be wrapped inbash
caommnad.Also, probably the path is wrong. In my case, this command is run:
konsole -e 'bash -c '\''cd [...]/SillyTavern-Launcher./SillyTavern && ./start.sh'\'''
(Note unnecessary.
character afterLauncher
word).I used this code as a workaround:
In
SillyTavern-extras
project, there are missing execute permissions forstart.sh
file. This may be fixed by launcher or maybe bettor to report and fix in that project?Script
start.sh
inSillyTavern-extras
should use exactly the sameconda
environment which was configured in launcher (install.sh
). According to code in https://github.com/SillyTavern/SillyTavern-Extras/blob/main/start.sh this is configured by setting$CONDA_PATH
environment variable. This should be done inlaucher.sh
.The text was updated successfully, but these errors were encountered: