How to use built-in system package manager In Linux

    Step 1: Open up your Linux terminal and type the following command and hit enter.

sudo apt-get install -y python3-rasterio

Output:

installing rasterio using pip.

How to Install Rasterio on Linux?

Rasterio is a python library for reading and writing on geospatial raster datasets. It is a GDAL and NumPy-based Python library for raster data. We can use any of the following methods to install Rasterio on our Linux machine.

Similar Reads

Method 1: Using pip command

Prerequisites:...

Method 2: Using built-in system package manager

Step 1: Open up your Linux terminal and type the following command and hit enter....

Method 3: Using aptitude package manager

Aptitude is a package manager, it is a frontend to apt. It is a Debian package manager. It helps us to install packages by displaying a list of software packages and allows us to interactively pick packages to install or remove....

Contact Us