How To Install python3-rtree on Fedora 36

In this tutorial we learn how to install python3-rtree in Fedora 36. python3-rtree is R-Tree spatial index for Python GIS

Introduction

In this tutorial we learn how to install python3-rtree on Fedora 36.

What is python3-rtree

Rtree is a ctypes Python wrapper of the spatialindex library, that provides a number of advanced spatial indexing features for the spatially curious Python user. These features include -Nearest neighbor search -Intersection search -Multi-dimensional indexes -Clustered indexes (store Python pickles directly with index entries) -Bulk loading -Deletion -Disk serialization -Custom storage implementation (to implement spatial indexing in ZODB, for example)

We can use yum or dnf to install python3-rtree on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install python3-rtree.

Install python3-rtree on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install python3-rtree

Install python3-rtree on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install python3-rtree

How To Uninstall python3-rtree on Fedora 36

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

sudo dnf remove python3-rtree

python3-rtree Package Contents on Fedora 36

/usr/lib/python3.10/site-packages/Rtree-0.9.7-py3.10.egg-info
/usr/lib/python3.10/site-packages/Rtree-0.9.7-py3.10.egg-info/PKG-INFO
/usr/lib/python3.10/site-packages/Rtree-0.9.7-py3.10.egg-info/SOURCES.txt
/usr/lib/python3.10/site-packages/Rtree-0.9.7-py3.10.egg-info/dependency_links.txt
/usr/lib/python3.10/site-packages/Rtree-0.9.7-py3.10.egg-info/not-zip-safe
/usr/lib/python3.10/site-packages/Rtree-0.9.7-py3.10.egg-info/top_level.txt
/usr/lib/python3.10/site-packages/rtree
/usr/lib/python3.10/site-packages/rtree/__init__.py
/usr/lib/python3.10/site-packages/rtree/__pycache__
/usr/lib/python3.10/site-packages/rtree/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/rtree/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/rtree/__pycache__/core.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/rtree/__pycache__/core.cpython-310.pyc
/usr/lib/python3.10/site-packages/rtree/__pycache__/exceptions.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/rtree/__pycache__/exceptions.cpython-310.pyc
/usr/lib/python3.10/site-packages/rtree/__pycache__/finder.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/rtree/__pycache__/finder.cpython-310.pyc
/usr/lib/python3.10/site-packages/rtree/__pycache__/index.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/rtree/__pycache__/index.cpython-310.pyc
/usr/lib/python3.10/site-packages/rtree/core.py
/usr/lib/python3.10/site-packages/rtree/exceptions.py
/usr/lib/python3.10/site-packages/rtree/finder.py
/usr/lib/python3.10/site-packages/rtree/index.py
/usr/share/doc/python3-rtree
/usr/share/doc/python3-rtree/README.md
/usr/share/licenses/python3-rtree
/usr/share/licenses/python3-rtree/LICENSE.txt

References

Summary

In this tutorial we learn how to install python3-rtree on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).