我安装了 gtp4all 并在日志中收到以下错误:
[2365695] Operation \"CreateDesktopEntry\" with arguments \"/home/benjamin/Desktop/GPT4All.desktop; Type=Application\nTerminal=false\nExec=\"/home/benjamin/gpt4all/bin/chat\"\nName=GPT4All\nIcon=/home/benjamin/gpt4all/logo-48.png\nName[en_US]=GPT4All\" failed: Konnte keinen Eintrag \"/home/benjamin/Desktop/GPT4All.desktop\" auf dem Arbeitsplatz anlegen.
[2365695] installationErrorWithCancel : Installationsfehler : Fehler beim Installieren von Komponente gpt4all:
Konnte keinen Eintrag "/home/benjamin/Desktop/GPT4All.desktop" auf dem Arbeitsplatz anlegen. Retry|Ignore|Cancel
我可以手动执行此 CreateDesktopEntry 吗?该怎么做?谢谢
本
答案1
是的,可以。所有信息都在第一条错误消息中。
.desktop
该应用程序尝试在目录中创建一个启动器/home/benjamin/Desktop/GPT4All.desktop
:这是您桌面上的启动器。
该文件的内容也已标明。要使其成为有效.desktop
文件,需要在第一行添加一行,因此内容变为:
[Desktop Entry]
Type=Application
Terminal=false
Exec="/home/benjamin/gpt4all/bin/chat"
Name=GPT4All
Icon=/home/benjamin/gpt4all/logo-48.png
Name[en_US]=GPT4All
因此,使用文本编辑器创建文件并将内容粘贴到其中。