I am looking to install Celestia under the latest version of Kubuntu. Unfortunately it is not featured in the repositories.
Can anyone help me figure out the best way ? I'm not so familiar with the manual installations and compiling, and I'd like if possible to use a minimal amount of secondary software.
Many thanks.
Added after 29 minutes 3 seconds:
I have attempted two main solutions :
One exposed here : https://askubuntu.com/questions/780596/install-celestia-on-ubuntu-16-04#866720
But it requires a huge amount of additional software for the make process.
And the one exposed in the userguide :
Linux Operating Systems:
Most distributions package Celestia to best suit their users' needs. Check with your package management software, as there is a good chance that Celestia is present there.
Alternatively, there is a precompiled x86 AutoPackage provided on the SourceForge download site. This package uses the GTK+ front-end, and should run on most computers. Information about installing an AutoPackage is here: http://www.autopackage.org/docs/howto-install/
Finally, should you wish to compile Celestia yourself, the process is fairly straightforward. Unpack the tarball:
celestia-1.6.0.tar.gz
Then change directory (cd) into the newly created directory and configure Celestia. Run configure with the appropriate command line for the version that you want to compile:Code: Select all
KDE
./configure --with-kde
GNOME
./configure --with-gnome
GTK+
./configure --with-gtk
The configure script may complain if you are missing a required component, or if you have an out of date version of a required component. Check the error output to determine what's missing, install the necessary items, and then try re-running configure. If neither the KDE or GNOME versions of Celestia will build, try falling back to the GTK+ version. There are many options for configure; you can view them all with a brief explanation for each-by running ./configure --help. After running configure, compile and install Celestia:Code: Select all
make
make install
Note: make install will need to be run as root unless you've overridden the default install directory by invoking configure with the --prefix option.
However when I run ./configure --with-kde I get the following error (both with sudo and as normal user) :
Code: Select all
configure: error: in `/home/sylvain/Documents/Applications/celestia-1.6.1':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details