How To Install python3-rmol on Rocky Linux 8
Introduction
In this tutorial we learn how to install python3-rmol
on Rocky Linux 8.
What is python3-rmol
This package contains Python libraries for rmol
We can use yum
or dnf
to install python3-rmol
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install python3-rmol.
Install python3-rmol 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-rmol
using dnf
by running the following command:
sudo dnf -y install python3-rmol
Install python3-rmol 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-rmol
using yum
by running the following command:
sudo yum -y install python3-rmol
How To Uninstall python3-rmol on Rocky Linux 8
To uninstall only the python3-rmol
package we can use the following command:
sudo dnf remove python3-rmol
python3-rmol Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/b7
/usr/lib/.build-id/b7/dd0665b497e67ffb1bd5c4d94aa80300105371
/usr/lib64/python3.6/site-packages/pyrmol
/usr/lib64/python3.6/site-packages/pyrmol/__init__.py
/usr/lib64/python3.6/site-packages/pyrmol/__pycache__
/usr/lib64/python3.6/site-packages/pyrmol/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/pyrmol/__pycache__/__init__.cpython-36.pyc
/usr/lib64/python3.6/site-packages/pyrmol/pyrmol
/usr/lib64/python3.6/site-packages/pyrmol/pyrmol.so
/usr/lib64/python3.6/site-packages/pyrmol/pyrmol.so.1.00
/usr/lib64/python3.6/site-packages/pyrmol/pyrmol.so.1.00.3
/usr/lib64/python3.6/site-packages/pyrmol/rmol_drawBPC
/usr/share/man/man1/pyrmol.1.gz
/usr/share/man/man1/rmol_drawBPC.1.gz
References
Summary
In this tutorial we learn how to install python3-rmol
on Rocky Linux 8 using yum and dnf.