How To Install python2-pymongo-gridfs on Rocky Linux 8

In this tutorial we learn how to install python2-pymongo-gridfs on Rocky Linux 8. python2-pymongo-gridfs is Python GridFS driver for MongoDB

Introduction

In this tutorial we learn how to install python2-pymongo-gridfs on Rocky Linux 8.

What is python2-pymongo-gridfs

GridFS is a storage specification for large objects in MongoDB.

We can use yum or dnf to install python2-pymongo-gridfs on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install python2-pymongo-gridfs.

Install python2-pymongo-gridfs on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install python2-pymongo-gridfs using dnf by running the following command:

sudo dnf -y install python2-pymongo-gridfs

Install python2-pymongo-gridfs on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install python2-pymongo-gridfs using yum by running the following command:

sudo yum -y install python2-pymongo-gridfs

How To Uninstall python2-pymongo-gridfs on Rocky Linux 8

To uninstall only the python2-pymongo-gridfs package we can use the following command:

sudo dnf remove python2-pymongo-gridfs

python2-pymongo-gridfs Package Contents on Rocky Linux 8

/usr/lib64/python2.7/site-packages/gridfs
/usr/lib64/python2.7/site-packages/gridfs/__init__.py
/usr/lib64/python2.7/site-packages/gridfs/__init__.pyc
/usr/lib64/python2.7/site-packages/gridfs/__init__.pyo
/usr/lib64/python2.7/site-packages/gridfs/errors.py
/usr/lib64/python2.7/site-packages/gridfs/errors.pyc
/usr/lib64/python2.7/site-packages/gridfs/errors.pyo
/usr/lib64/python2.7/site-packages/gridfs/grid_file.py
/usr/lib64/python2.7/site-packages/gridfs/grid_file.pyc
/usr/lib64/python2.7/site-packages/gridfs/grid_file.pyo
/usr/share/doc/python2-pymongo-gridfs
/usr/share/doc/python2-pymongo-gridfs/README.rst
/usr/share/licenses/python2-pymongo-gridfs
/usr/share/licenses/python2-pymongo-gridfs/LICENSE

References

Summary

In this tutorial we learn how to install python2-pymongo-gridfs on Rocky Linux 8 using yum and dnf.