Open In App

How to install Marble on Ubuntu

Last Updated : 02 Jun, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

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
111zon21-copy-2

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
211zon12-copy-2

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, Configure and Use GIT on Ubuntu?
Pre-requisites: Ubuntu, Terminal Git is a distributed revision control system with an emphasis on speed, data integrity, and support for distributed non-linear workflows. Every Git working directory is a full-fledged repository with complete history and full version-tracking capabilities, independent of network access or a central server. GitHub is
6 min read
How to install Mailspring on Ubuntu
MailSpring application is an Email Client that provides various high-rich features like email templates, mail merge, custom signatures, and advanced search options. MailSpring application supports various email providers and email services like Gmail, Yahoo, and Microsoft Exchange. In this article, we will be installing the MailSpring application o
4 min read
How To Install Bitcoin Core wallet on Ubuntu
The Bitcoin Core application is an important application to improve the ease of transactions using Bitcoin. In this article, we went through the Installation steps of the Application by using 2 different methods. Along with the installation, we went through the uninstallation steps, which are as important as the installation. What is Bitcoin Core B
4 min read
How to Install Ubuntu on Windows using VMware?
VMWare, a short form of "VirtualMachine Ware". A cloud computing company that develops virtualization software, management, and networking interfaces or tools. It provides hypervisor tools or products that help in running virtual machines, clusters, and containers. By using this software we can virtualize the computer with required computing resour
2 min read
How to install the NFS server on Ubuntu?
NFS, which stands for Network File System, was created in 1984 by Sun Microsystems. A file system called Network File System (NFS) enables local access to distant files from various places across a network.NFS has a typical client/server architecture for this access, facilitating sharing between Linux workstations of any distribution. We will demon
4 min read
How to Install PyQuery package on Ubuntu?
Pyquery is a Python library that has quite a similar API to jQuery. It uses lxml module for fast XML and HTML manipulation experience. The API is as large as possible comparable to jQuery. Pyquery is processed on the server-side, unlike jquery which is processed in the browser. We can crawl the web information through this library very easily. Requ
2 min read
How to install Elinks on ubuntu
Elinks is a Unix-like operating system's free text-based web browser. Petr Baudi forked the Links Web browser in late 2001 as an experimental branch, hence the E in the name. The E has evolved to stand for Enhanced or Extended since then. Uses of ELinks: Elinks is a text-mode WWW browser that has color support, table rendering, background downloadi
2 min read
How to Install TradingView on Ubuntu?
The well-known platform TradingView makes it possible for traders, investors, and instructors to work together. This portal disseminates information on financial markets including stocks, futures, FX, and cryptocurrency. There is no need to download a client because TradingView typically runs in a browser. More than 30 million traders and investors
3 min read
How to install Django with NGINX, Gunicorn, and PostgreSQL on Ubuntu?
This article describes how to install and configure Django with PostgreSQL, Gunicorn, and Nginx on your Ubuntu machine. First, let's look at an overview of all the tools we use. Django is a robust, free, open-source, Python-based web framework that follows the MVT (Model-Template-View) architectural pattern. Though it includes an integrated develop
7 min read
How to Install ImageMagick and Imagick PHP extension in Ubuntu?
The Imagick function is used to create and modify images using the ImageMagick API. The ImageMagick is the software suite to create edit and modify the compose bitmap images. This functions read, write and converts images in many formats including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript, SVG, and TIFF. Requirements: PHP 5.1.3
2 min read