我使用的环境ubuntu24.04桌面端
原问题答案链接:https://github.com/bambulab/BambuStudio/issues/3973
解决办法,添加系统软件源。
我通过添加之前的LTS仓库并安装4.0版解决了这个问题。
在命令行执行该命令添加软件源
sudo vim /etc/apt/sources.list.d/ubuntu.sources
,
把这以下内容添加:
Types: deb
URIs: http://br.archive.ubuntu.com/ubuntu/
Suites: jammy noble-updates noble-backports
Components: main restricted universe multiverse
Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
Types: deb
URIs: http://security.ubuntu.com/ubuntu/
Suites: jammy-security
Components: main restricted universe multiverse
Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
添加完成后如图
保存并退出后执行
sudo apt update
然后在执行
sudo apt install libwebkit2gtk-4.0-37
就会进行安装了,完美解决这个问题。
评论区