计算器无法启动

计算器无法启动

我正在运行 18.10,最近 gnome-calculator 停止运行。从命令行运行它会产生以下结果:

jr@Ubuntu-HP:~$ gnome-calculator 
You need to connect this snap to the gnome platform snap.

You can do this with those commands:
snap install gnome-3-26-1604
snap connect gnome-calculator:gnome-3-26-1604 gnome-3-26-1604

(the '3-26-1604' number defines the platform version and might change)

因此,请遵循以下说明:

jr@Ubuntu-HP:~$ snap install gnome-3-26-1604
snap "gnome-3-26-1604" is already installed, see 'snap help refresh'
jr@Ubuntu-HP:~$ snap connect gnome-calculator:gnome-3-26-1604 gnome-3-26-1604
error: snap "gnome-calculator" has no plug named "gnome-3-26-1604"


jr@Ubuntu-HP:~$ apt-cache policy gnome-calculator
gnome-calculator: 
   Installed: (none) 
   Candidate: 1:3.30.1-1ubuntu1 
   Version table:
      1:3.30.1-1ubuntu1 500
      500 http://au.archive.ubuntu.com/ubuntu cosmic/main amd64 Packages

关于如何解决这个问题有什么想法吗?

谢谢!

这是我的$PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin

答案1

解决此问题的一种方法是使用 gnome-calculator 的“apt”版本,而不是“snap”版本:

sudo snap remove gnome-calculator

将删除计算器的 snap 版本,并且“apt”版本已安装在您的系统上。只需打开活动即可。...

答案2

我发现通过 apt 而不是 snap(18.04 中的默认设置)来安装计算器应用程序。

由于您的笔记本电脑和台式机都出现了此问题,因此可能是由于 gnome-calculator 的 snap 版本自动更新所致。使用以下命令切换到 apt 版本。

sudo snap remove gnome-calculator && sudo apt install gnome-calculator

相关内容