通过 ppa 安装 Gnome Chemistry Utils

JV7*_*V76 3 command-line

你好,我正在寻找 linux 的化学应用程序,我发现了这个 Gnome Chemistry Utils,但我不知道如何安装它,有一个来自 ubuntu 的启动板可以使用它,但我不知道如何制作终端命令来安装它。

这是启动板:https : //launchpad.net/ubuntu/+source/gnome-chemistry-utils

use*_*733 7

学习如何使用 apt 的好时机!

第 1 课:让我们使用 apt 找出哪些可用包的标题或描述中包含“gnome”和“chemistry”。

$ apt search gnome chemistry

Sorting... Done
Full Text Search... Done
gcrystal/cosmic 0.14.17-1ubuntu2 amd64
  lightweight crystal structures visualizer

gcu-bin/cosmic 0.14.17-1ubuntu2 amd64
  GNOME chemistry utils (helper applications)

gcu-plugin/cosmic 0.14.17-1ubuntu2 amd64
  GNOME chemistry utils (browser plugin)

ghemical/cosmic 3.0.0-3build1 amd64
  GNOME molecular modelling environment

libgcu0v5/cosmic 0.14.17-1ubuntu2 amd64
  GNOME chemistry utils (library)
Run Code Online (Sandbox Code Playgroud)

第 2 课:让我们使用 apt 查找有关gcu-bin包的更多信息:

$ apt show gcu-bin

[additional information has been edited out for clarity]

Description: GNOME chemistry utils (helper applications)
 The GNOME Chemistry Utils provide C++ classes and Gtk+-2 widgets
 related to chemistry. They will be used in future versions of both
 gcrystal and gchempaint.
 .
 This package provides 4 applications:
 .
  * a molecular structures viewer (GChem3D)
  * a molar mass calculator (GChemCalc)
  * a periodic table of the elements (GChemTable)
  * a spectra viewer (GSpectrum)
Run Code Online (Sandbox Code Playgroud)

第 3 课:如何安装软件包。让我们继续使用这个gcu-bin包作为例子。

$ sudo apt install gcu-bin
Run Code Online (Sandbox Code Playgroud)