How To Install python3-pysvn on Rocky Linux 8

In this tutorial we learn how to install python3-pysvn on Rocky Linux 8. python3-pysvn is Pythonic style bindings for Subversion

Introduction

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

What is python3-pysvn

Pythonic style bindings for Subversion

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

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

sudo dnf -y install python3-pysvn

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

sudo yum -y install python3-pysvn

How To Uninstall python3-pysvn on Rocky Linux 8

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

sudo dnf remove python3-pysvn

python3-pysvn Package Contents on Rocky Linux 8

/usr/lib/.build-id
/usr/lib/.build-id/87
/usr/lib/.build-id/87/7ba73808c7be4619720238965c748c50ae6944
/usr/lib64/python3.6/site-packages/pysvn
/usr/lib64/python3.6/site-packages/pysvn/__init__.py
/usr/lib64/python3.6/site-packages/pysvn/__pycache__
/usr/lib64/python3.6/site-packages/pysvn/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/pysvn/__pycache__/__init__.cpython-36.pyc
/usr/lib64/python3.6/site-packages/pysvn/_pysvn.so
/usr/share/doc/python3-pysvn
/usr/share/doc/python3-pysvn/Examples
/usr/share/doc/python3-pysvn/Examples/Client
/usr/share/doc/python3-pysvn/Examples/Client/parse_datetime.py
/usr/share/doc/python3-pysvn/Examples/Client/pysvn_print_doc.py
/usr/share/doc/python3-pysvn/Examples/Client/svn_cmd.py
/usr/share/doc/python3-pysvn/pysvn.html
/usr/share/doc/python3-pysvn/pysvn_prog_guide.html
/usr/share/doc/python3-pysvn/pysvn_prog_ref.html
/usr/share/doc/python3-pysvn/pysvn_prog_ref.js
/usr/share/licenses/python3-pysvn
/usr/share/licenses/python3-pysvn/LICENSE.txt

References

Summary

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