How To Install libstdc++-10-dev on Ubuntu 20.04

In this tutorial we learn how to install libstdc++-10-dev on Ubuntu 20.04. libstdc++-10-dev is GNU Standard C++ Library v3 (development files) GNU Standard C++ Library v3 (development files)

Introduction

In this tutorial we learn how to install libstdc++-10-dev on Ubuntu 20.04.

What is libstdc++-10-dev

libstdc++-10-dev is:

This package contains the headers and static library files necessary for building C++ programs which use libstdc++.

libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0.

Package: libstdc++-10-dev Architecture: amd64 Version: 10-20200411-0ubuntu1 Multi-Arch: same Priority: optional Section: universe/libdevel Source: gcc-10 Origin: Ubuntu Maintainer: Ubuntu Core developers [email protected] Original-Maintainer: Debian GCC Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 17426 Provides: libstdc++-dev Depends: gcc-10-base (= 10-20200411-0ubuntu1), libgcc-10-dev (= 10-20200411-0ubuntu1), libstdc++6 (>= 10-20200411-0ubuntu1), libc6-dev (>= 2.13-0ubuntu6) Suggests: libstdc++-10-doc Conflicts: libg++2.8-dev, libg++27-dev, libg++272-dev (« 2.7.2.8-1), libstdc++2.10-dev (« 1:2.95.3-2), libstdc++2.8-dev, libstdc++2.9-dev, libstdc++2.9-glibc2.1-dev, libstdc++3.0-dev Filename: pool/universe/g/gcc-10/libstdc++-10-dev_10-20200411-0ubuntu1_amd64.deb Size: 1717272 MD5sum: 6d720cefc67bf3d07fc694d27f505407 SHA1: 6b57efab9473e6dafc701d78c053fe0e57e05194 SHA256: a6afdd650142c92ab39e6d57f720ec0e0e8240b746027843d26fb27d8bebf3a2 Homepage: http://gcc.gnu.org/ Description-en: GNU Standard C++ Library v3 (development files) This package contains the headers and static library files necessary for building C++ programs which use libstdc++.

libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0.

There are three methods to install libstdc++-10-dev on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libstdc++-10-dev Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libstdc++-10-dev using apt-get by running the following command:

sudo apt-get -y install libstdc++-10-dev

Install libstdc++-10-dev Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libstdc++-10-dev using apt by running the following command:

sudo apt -y install libstdc++-10-dev

Install libstdc++-10-dev Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libstdc++-10-dev using aptitude by running the following command:

sudo aptitude -y install libstdc++-10-dev

How To Uninstall libstdc++-10-dev on Ubuntu 20.04

To uninstall only the libstdc++-10-dev package we can use the following command:

sudo apt-get remove libstdc++-10-dev

Uninstall libstdc++-10-dev And Its Dependencies

To uninstall libstdc++-10-dev and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove libstdc++-10-dev

Remove libstdc++-10-dev Configurations and Data

To remove libstdc++-10-dev configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge libstdc++-10-dev

Remove libstdc++-10-dev configuration, data, and all of its dependencies

We can use the following command to remove libstdc++-10-dev configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libstdc++-10-dev

References

Summary

In this tutorial we learn how to install libstdc++-10-dev package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.