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

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

Introduction

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

What is python3-pymongo-gridfs

GridFS is a storage specification for large objects in MongoDB. This package contains the python3 version of this module.

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

Install python3-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 python3-pymongo-gridfs using dnf by running the following command:

sudo dnf -y install python3-pymongo-gridfs

Install python3-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 python3-pymongo-gridfs using yum by running the following command:

sudo yum -y install python3-pymongo-gridfs

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

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

sudo dnf remove python3-pymongo-gridfs

python3-pymongo-gridfs Package Contents on Rocky Linux 8

/usr/lib64/python3.6/site-packages/gridfs
/usr/lib64/python3.6/site-packages/gridfs/__init__.py
/usr/lib64/python3.6/site-packages/gridfs/__pycache__
/usr/lib64/python3.6/site-packages/gridfs/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/gridfs/__pycache__/__init__.cpython-36.pyc
/usr/lib64/python3.6/site-packages/gridfs/__pycache__/errors.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/gridfs/__pycache__/errors.cpython-36.pyc
/usr/lib64/python3.6/site-packages/gridfs/__pycache__/grid_file.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/gridfs/__pycache__/grid_file.cpython-36.pyc
/usr/lib64/python3.6/site-packages/gridfs/errors.py
/usr/lib64/python3.6/site-packages/gridfs/grid_file.py
/usr/share/doc/python3-pymongo-gridfs
/usr/share/doc/python3-pymongo-gridfs/README.rst
/usr/share/licenses/python3-pymongo-gridfs
/usr/share/licenses/python3-pymongo-gridfs/LICENSE

References

Summary

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