How To Install libolm-python3 on Rocky Linux 8
Introduction
In this tutorial we learn how to install libolm-python3
on Rocky Linux 8.
What is libolm-python3
Python 3 bindings for libolm.
We can use yum
or dnf
to install libolm-python3
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libolm-python3.
Install libolm-python3 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 libolm-python3
using dnf
by running the following command:
sudo dnf -y install libolm-python3
Install libolm-python3 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 libolm-python3
using yum
by running the following command:
sudo yum -y install libolm-python3
How To Uninstall libolm-python3 on Rocky Linux 8
To uninstall only the libolm-python3
package we can use the following command:
sudo dnf remove libolm-python3
libolm-python3 Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/b0
/usr/lib/.build-id/b0/da017adb76c15b403bbbb2d349b0429de287d8
/usr/lib64/python3.6/site-packages/_libolm.abi3.so
/usr/lib64/python3.6/site-packages/olm
/usr/lib64/python3.6/site-packages/olm/__init__.py
/usr/lib64/python3.6/site-packages/olm/__pycache__
/usr/lib64/python3.6/site-packages/olm/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/olm/__pycache__/__init__.cpython-36.pyc
/usr/lib64/python3.6/site-packages/olm/__pycache__/__version__.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/olm/__pycache__/__version__.cpython-36.pyc
/usr/lib64/python3.6/site-packages/olm/__pycache__/_compat.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/olm/__pycache__/_compat.cpython-36.pyc
/usr/lib64/python3.6/site-packages/olm/__pycache__/_finalize.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/olm/__pycache__/_finalize.cpython-36.pyc
/usr/lib64/python3.6/site-packages/olm/__pycache__/account.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/olm/__pycache__/account.cpython-36.pyc
/usr/lib64/python3.6/site-packages/olm/__pycache__/group_session.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/olm/__pycache__/group_session.cpython-36.pyc
/usr/lib64/python3.6/site-packages/olm/__pycache__/pk.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/olm/__pycache__/pk.cpython-36.pyc
/usr/lib64/python3.6/site-packages/olm/__pycache__/sas.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/olm/__pycache__/sas.cpython-36.pyc
/usr/lib64/python3.6/site-packages/olm/__pycache__/session.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/olm/__pycache__/session.cpython-36.pyc
/usr/lib64/python3.6/site-packages/olm/__pycache__/utility.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/olm/__pycache__/utility.cpython-36.pyc
/usr/lib64/python3.6/site-packages/olm/__version__.py
/usr/lib64/python3.6/site-packages/olm/_compat.py
/usr/lib64/python3.6/site-packages/olm/_finalize.py
/usr/lib64/python3.6/site-packages/olm/account.py
/usr/lib64/python3.6/site-packages/olm/group_session.py
/usr/lib64/python3.6/site-packages/olm/pk.py
/usr/lib64/python3.6/site-packages/olm/sas.py
/usr/lib64/python3.6/site-packages/olm/session.py
/usr/lib64/python3.6/site-packages/olm/utility.py
/usr/lib64/python3.6/site-packages/python_olm-3.2.4-py3.6.egg-info
/usr/lib64/python3.6/site-packages/python_olm-3.2.4-py3.6.egg-info/PKG-INFO
/usr/lib64/python3.6/site-packages/python_olm-3.2.4-py3.6.egg-info/SOURCES.txt
/usr/lib64/python3.6/site-packages/python_olm-3.2.4-py3.6.egg-info/dependency_links.txt
/usr/lib64/python3.6/site-packages/python_olm-3.2.4-py3.6.egg-info/not-zip-safe
/usr/lib64/python3.6/site-packages/python_olm-3.2.4-py3.6.egg-info/requires.txt
/usr/lib64/python3.6/site-packages/python_olm-3.2.4-py3.6.egg-info/top_level.txt
References
Summary
In this tutorial we learn how to install libolm-python3
on Rocky Linux 8 using yum and dnf.