你好,我正在为linux搜索化学应用程序,我找到了这个Gnome化学Utils,但是我不知道如何安装它,我有一个来自ubuntu的启动板来使用它,但是我不知道如何制作安装它的命令。
这是启动板:https://launchpad.net/ubuntu/+source/gnome-chemistry-utils
发布于 2019-01-26 16:09:08
一个学习如何使用apt的好时机!
Lesson 1:让我们使用apt来找出哪些可用的包在标题或描述中有"gnome“和”化学“。
$ 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)Lesson 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)Lesson 3:如何安装包。让我们继续使用gcu-bin包作为示例。
$ sudo apt install gcu-binhttps://askubuntu.com/questions/1113086
复制相似问题