How To Install python3-assimp on Rocky Linux 8

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

Introduction

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

What is python3-assimp

This package contains the PyAssimp3 python bindings

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

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

sudo dnf -y install python3-assimp

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

sudo yum -y install python3-assimp

How To Uninstall python3-assimp on Rocky Linux 8

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

sudo dnf remove python3-assimp

python3-assimp Package Contents on Rocky Linux 8

/usr/lib/python3.6/site-packages/pyassimp
/usr/lib/python3.6/site-packages/pyassimp/__init__.py
/usr/lib/python3.6/site-packages/pyassimp/__pycache__
/usr/lib/python3.6/site-packages/pyassimp/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pyassimp/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/pyassimp/__pycache__/core.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pyassimp/__pycache__/core.cpython-36.pyc
/usr/lib/python3.6/site-packages/pyassimp/__pycache__/errors.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pyassimp/__pycache__/errors.cpython-36.pyc
/usr/lib/python3.6/site-packages/pyassimp/__pycache__/formats.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pyassimp/__pycache__/formats.cpython-36.pyc
/usr/lib/python3.6/site-packages/pyassimp/__pycache__/helper.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pyassimp/__pycache__/helper.cpython-36.pyc
/usr/lib/python3.6/site-packages/pyassimp/__pycache__/material.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pyassimp/__pycache__/material.cpython-36.pyc
/usr/lib/python3.6/site-packages/pyassimp/__pycache__/postprocess.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pyassimp/__pycache__/postprocess.cpython-36.pyc
/usr/lib/python3.6/site-packages/pyassimp/__pycache__/structs.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pyassimp/__pycache__/structs.cpython-36.pyc
/usr/lib/python3.6/site-packages/pyassimp/core.py
/usr/lib/python3.6/site-packages/pyassimp/errors.py
/usr/lib/python3.6/site-packages/pyassimp/formats.py
/usr/lib/python3.6/site-packages/pyassimp/helper.py
/usr/lib/python3.6/site-packages/pyassimp/material.py
/usr/lib/python3.6/site-packages/pyassimp/postprocess.py
/usr/lib/python3.6/site-packages/pyassimp/structs.py
/usr/share/doc/python3-assimp
/usr/share/doc/python3-assimp/README.md

References

Summary

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