How To Install gdata-sharp on CentOS 7

In this tutorial we learn how to install gdata-sharp on CentOS 7. gdata-sharp is .NET library for the Google Data API

Introduction

In this tutorial we learn how to install gdata-sharp on CentOS 7.

What is gdata-sharp

The Google Data APIs (GData) provide a simple protocol for reading and writing data on the web. Each of the following Google services provides a Google data API * Base * Blogger * Calendar * Spreadsheets * Google Apps Provisioning * Code Search * Notebook * Picasa Web Albums * Document Feed * Contacts * You Tube * Google Health The GData .NET Client Library provides a library and source code that make it easy to access data through Google Data APIs.

We can use yum or dnf to install gdata-sharp on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install gdata-sharp.

Install gdata-sharp on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install gdata-sharp using yum by running the following command:

sudo yum -y install gdata-sharp

Install gdata-sharp on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install gdata-sharp using dnf by running the following command:

sudo dnf -y install gdata-sharp

How To Uninstall gdata-sharp on CentOS 7

To uninstall only the gdata-sharp package we can use the following command:

sudo dnf remove gdata-sharp

References

Summary

In this tutorial we learn how to install gdata-sharp on CentOS 7 using yum and dnf.