Install Gnome Chemistry Utils via ppa
Hello i was searching for chemistry apps for linux and i found this Gnome Chemistry Utils, but i dont know how to install it, there a launchpad from ubuntu to use it, but i dont know how to make the termial commands to install it.
This is the launchpad: https://launchpad.net/ubuntu/+source/gnome-chemistry-utils
command-line
add a comment |
Hello i was searching for chemistry apps for linux and i found this Gnome Chemistry Utils, but i dont know how to install it, there a launchpad from ubuntu to use it, but i dont know how to make the termial commands to install it.
This is the launchpad: https://launchpad.net/ubuntu/+source/gnome-chemistry-utils
command-line
1
You do NOT need to use a PPA. Gnome Chemistry Utils is in the Ubuntu Repositories.
– user535733
Jan 26 at 16:10
add a comment |
Hello i was searching for chemistry apps for linux and i found this Gnome Chemistry Utils, but i dont know how to install it, there a launchpad from ubuntu to use it, but i dont know how to make the termial commands to install it.
This is the launchpad: https://launchpad.net/ubuntu/+source/gnome-chemistry-utils
command-line
Hello i was searching for chemistry apps for linux and i found this Gnome Chemistry Utils, but i dont know how to install it, there a launchpad from ubuntu to use it, but i dont know how to make the termial commands to install it.
This is the launchpad: https://launchpad.net/ubuntu/+source/gnome-chemistry-utils
command-line
command-line
asked Jan 26 at 15:53
JV76JV76
182
182
1
You do NOT need to use a PPA. Gnome Chemistry Utils is in the Ubuntu Repositories.
– user535733
Jan 26 at 16:10
add a comment |
1
You do NOT need to use a PPA. Gnome Chemistry Utils is in the Ubuntu Repositories.
– user535733
Jan 26 at 16:10
1
1
You do NOT need to use a PPA. Gnome Chemistry Utils is in the Ubuntu Repositories.
– user535733
Jan 26 at 16:10
You do NOT need to use a PPA. Gnome Chemistry Utils is in the Ubuntu Repositories.
– user535733
Jan 26 at 16:10
add a comment |
1 Answer
1
active
oldest
votes
A great time to learn how to use apt!
Lesson 1: Let's use apt to find out which available packages have "gnome" and "chemistry" in their title or description.
$ 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: Let's use apt to find more information about the gcu-bin
package:
$ 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: How to install a package. Let's keep using the gcu-bin
package as an example.
$ sudo apt install gcu-bin
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1113086%2finstall-gnome-chemistry-utils-via-ppa%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
A great time to learn how to use apt!
Lesson 1: Let's use apt to find out which available packages have "gnome" and "chemistry" in their title or description.
$ 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: Let's use apt to find more information about the gcu-bin
package:
$ 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: How to install a package. Let's keep using the gcu-bin
package as an example.
$ sudo apt install gcu-bin
add a comment |
A great time to learn how to use apt!
Lesson 1: Let's use apt to find out which available packages have "gnome" and "chemistry" in their title or description.
$ 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: Let's use apt to find more information about the gcu-bin
package:
$ 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: How to install a package. Let's keep using the gcu-bin
package as an example.
$ sudo apt install gcu-bin
add a comment |
A great time to learn how to use apt!
Lesson 1: Let's use apt to find out which available packages have "gnome" and "chemistry" in their title or description.
$ 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: Let's use apt to find more information about the gcu-bin
package:
$ 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: How to install a package. Let's keep using the gcu-bin
package as an example.
$ sudo apt install gcu-bin
A great time to learn how to use apt!
Lesson 1: Let's use apt to find out which available packages have "gnome" and "chemistry" in their title or description.
$ 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: Let's use apt to find more information about the gcu-bin
package:
$ 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: How to install a package. Let's keep using the gcu-bin
package as an example.
$ sudo apt install gcu-bin
answered Jan 26 at 16:09
user535733user535733
8,72622943
8,72622943
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1113086%2finstall-gnome-chemistry-utils-via-ppa%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
You do NOT need to use a PPA. Gnome Chemistry Utils is in the Ubuntu Repositories.
– user535733
Jan 26 at 16:10