How to install Marble on Ubuntu
Last Updated :
02 Jun, 2024
Marble is a virtual globe program that lets you pick between the Earth, Moon, Venus, Mars, and other planets to show as a 3-D model. KDE created it as free software under the provisions of the GNU LGPL for usage on personal computers and smartphones. It is written in C++ and uses the Qt framework. Marble is meant to be extremely adaptable; in addition to its cross-platform architecture, the fundamental components may be simply merged into other programs. It is intended to operate without hardware acceleration, but it may be modified to use OpenGL. A key user-experience goal is for the application to start fast, and it comes with a small but relevant offline dataset.
Installation of Marble on Ubuntu
There are three methods to install Marble on Ubuntu:
- Method 1: Using the apt-get command
- Method 2: Using the apt command
- Method 3: Using aptitude command
Let's go through all the installation methods on Ubuntu.
Method 1: Using the apt-get command
Step 1: Using the following command, update the apt database using apt-get.
sudo apt-get update

Step 2: After upgrading the apt database, we can use apt-get to install marble by performing the following command:
sudo apt-get -y install marble

Method 2: Using the apt command
Step 1: Execute the below command to update the apt repositories.
sudo apt update

Step 2: After upgrading the apt database, we can use apt to install marble by performing the following command:
sudo apt -y install marble
Method 3: Using aptitude command
Step 1: If we want to use this method, you may need to install aptitude first because it is not normally installed by default on Ubuntu. Use the following command to update the aptitude repositories with aptitude.
sudo aptitude update

Step 2: After upgrading the apt database, we can use aptitude to install marble by performing the following command.
sudo aptitude -y install marble

Now Marble is successfully installed on our Ubuntu Operating System.
Similar Reads
How to install make on Ubuntu The "make" program in Linux is used to compile and manage a set of source code applications and files. It allows developers to install and gather a range of apps via the terminal. It also controls and cuts down on the amount of time necessary for compilation. The basic objective of the make command
3 min read
How To Install 2048 on Ubuntu The 2048 game is a math-based puzzle game in which you must slide tiles on a 4x4 grid in one of four ways. Touching tiles of the same value are combined into tiles with the merged ones' extra value. After sliding, additional tiles appear at random, starting with a few 2-valued tiles. Before the boar
2 min read
How to Install Golang Migrate on Ubuntu? Schema migration is an important activity when dealing with databases that we frequently have to perform during the application's life cycle to adapt to new business needs. Golang migrate is a tool which helps in this operation. Installing Golang Migrate on Ubuntu Step 1: Open the terminal for execu
1 min read
How to install RubyMine on Ubuntu RubyMine is an integrated development environment (IDE) that aids productivity in all aspects of Ruby/Rails project development, from creating and debugging code to testing and delivering a finished application. RubyMine is available for macOS, Windows, and Linux, among other platforms. JetBrains' R
2 min read
How to install Googler on Ubuntu Googler is the command-line application used to navigate to various URLs, view news, and open various movies. Making Google searches with Googler is a powerful open-source application that also depends on Python, so before installing it, make sure Python is up to date on your operating system. We'll
2 min read