How To Install python3-openslide on Rocky Linux 8

In this tutorial we learn how to install python3-openslide on Rocky Linux 8. python3-openslide is Python 3 bindings for the OpenSlide library

Introduction

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

What is python3-openslide

The OpenSlide library allows programs to access virtual slide files regardless of the underlying image format. This package allows Python 3 programs to use OpenSlide.

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

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

sudo dnf -y install python3-openslide

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

sudo yum -y install python3-openslide

How To Uninstall python3-openslide on Rocky Linux 8

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

sudo dnf remove python3-openslide

python3-openslide Package Contents on Rocky Linux 8

/usr/lib/.build-id
/usr/lib/.build-id/72
/usr/lib/.build-id/72/6f34948dcbc02689bf1a2e2eb2728d7f1cf8d3
/usr/lib64/python3.6/site-packages/openslide
/usr/lib64/python3.6/site-packages/openslide/__init__.py
/usr/lib64/python3.6/site-packages/openslide/__pycache__
/usr/lib64/python3.6/site-packages/openslide/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/openslide/__pycache__/__init__.cpython-36.pyc
/usr/lib64/python3.6/site-packages/openslide/__pycache__/_version.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/openslide/__pycache__/_version.cpython-36.pyc
/usr/lib64/python3.6/site-packages/openslide/__pycache__/deepzoom.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/openslide/__pycache__/deepzoom.cpython-36.pyc
/usr/lib64/python3.6/site-packages/openslide/__pycache__/lowlevel.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/openslide/__pycache__/lowlevel.cpython-36.pyc
/usr/lib64/python3.6/site-packages/openslide/_convert.cpython-36m-x86_64-linux-gnu.so
/usr/lib64/python3.6/site-packages/openslide/_version.py
/usr/lib64/python3.6/site-packages/openslide/deepzoom.py
/usr/lib64/python3.6/site-packages/openslide/lowlevel.py
/usr/lib64/python3.6/site-packages/openslide_python-1.1.2-py3.6.egg-info
/usr/lib64/python3.6/site-packages/openslide_python-1.1.2-py3.6.egg-info/PKG-INFO
/usr/lib64/python3.6/site-packages/openslide_python-1.1.2-py3.6.egg-info/SOURCES.txt
/usr/lib64/python3.6/site-packages/openslide_python-1.1.2-py3.6.egg-info/dependency_links.txt
/usr/lib64/python3.6/site-packages/openslide_python-1.1.2-py3.6.egg-info/requires.txt
/usr/lib64/python3.6/site-packages/openslide_python-1.1.2-py3.6.egg-info/top_level.txt
/usr/lib64/python3.6/site-packages/openslide_python-1.1.2-py3.6.egg-info/zip-safe
/usr/share/doc/python3-openslide
/usr/share/doc/python3-openslide/CHANGELOG.txt
/usr/share/doc/python3-openslide/html
/usr/share/doc/python3-openslide/html/index.html
/usr/share/doc/python3-openslide/html/objects.inv
/usr/share/doc/python3-openslide/html/search.html
/usr/share/doc/python3-openslide/html/searchindex.js
/usr/share/doc/python3-openslide/html/sources
/usr/share/doc/python3-openslide/html/sources/index.rst.txt
/usr/share/doc/python3-openslide/html/static
/usr/share/doc/python3-openslide/html/static/ajax-loader.gif
/usr/share/doc/python3-openslide/html/static/basic.css
/usr/share/doc/python3-openslide/html/static/classic.css
/usr/share/doc/python3-openslide/html/static/comment-bright.png
/usr/share/doc/python3-openslide/html/static/comment-close.png
/usr/share/doc/python3-openslide/html/static/comment.png
/usr/share/doc/python3-openslide/html/static/default.css
/usr/share/doc/python3-openslide/html/static/doctools.js
/usr/share/doc/python3-openslide/html/static/documentation_options.js
/usr/share/doc/python3-openslide/html/static/down-pressed.png
/usr/share/doc/python3-openslide/html/static/down.png
/usr/share/doc/python3-openslide/html/static/file.png
/usr/share/doc/python3-openslide/html/static/jquery-3.2.1.js
/usr/share/doc/python3-openslide/html/static/jquery.js
/usr/share/doc/python3-openslide/html/static/minus.png
/usr/share/doc/python3-openslide/html/static/plus.png
/usr/share/doc/python3-openslide/html/static/pygments.css
/usr/share/doc/python3-openslide/html/static/searchtools.js
/usr/share/doc/python3-openslide/html/static/sidebar.js
/usr/share/doc/python3-openslide/html/static/underscore-1.3.1.js
/usr/share/doc/python3-openslide/html/static/underscore.js
/usr/share/doc/python3-openslide/html/static/up-pressed.png
/usr/share/doc/python3-openslide/html/static/up.png
/usr/share/doc/python3-openslide/html/static/websupport.js
/usr/share/licenses/python3-openslide
/usr/share/licenses/python3-openslide/LICENSE.txt
/usr/share/licenses/python3-openslide/lgpl-2.1.txt

References

Summary

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