Error on Startup (first install) [Workaround included]
danielgangl opened this issue · 2 comments
danielgangl commented
yagil commented
Hi @danielgangl what happens when you run this in the Terminal?
Command to try 1:
ls ~/.cache
Command to try 2:
mkdir ~/.cache/lm-studio
Possible cause:
The ~/.cache
folder was created sometime in the past using elevated permissions
If the commands above return something like permission denied
(assuming you DO NOT run them with sudo
) then the way to work around it is:
sudo chown -R $(whoami):staff ~/.cache
chmod -R 755 ~/.cache
As always make sure you understand the implications and only run it if you want to!
danielgangl commented
Ah right - yeah that was the issue. Works now, thanks!