How To Install python3-slip on Rocky Linux 8
Introduction
In this tutorial we learn how to install python3-slip
on Rocky Linux 8.
What is python3-slip
The Simple Library for Python 3.x packages contain miscellaneous code for convenience, extension and workaround purposes. This package provides the “slip” and the “slip.util” modules.
We can use yum
or dnf
to install python3-slip
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install python3-slip.
Install python3-slip 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-slip
using dnf
by running the following command:
sudo dnf -y install python3-slip
Install python3-slip 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-slip
using yum
by running the following command:
sudo yum -y install python3-slip
How To Uninstall python3-slip on Rocky Linux 8
To uninstall only the python3-slip
package we can use the following command:
sudo dnf remove python3-slip
python3-slip Package Contents on Rocky Linux 8
/usr/lib/python3.6/site-packages/slip
/usr/lib/python3.6/site-packages/slip-0.6.4-py3.6.egg-info
/usr/lib/python3.6/site-packages/slip/__init__.py
/usr/lib/python3.6/site-packages/slip/__pycache__
/usr/lib/python3.6/site-packages/slip/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/slip/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/slip/_wrappers
/usr/lib/python3.6/site-packages/slip/_wrappers/__init__.py
/usr/lib/python3.6/site-packages/slip/_wrappers/__pycache__
/usr/lib/python3.6/site-packages/slip/_wrappers/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/slip/_wrappers/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/slip/_wrappers/__pycache__/_glib.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/slip/_wrappers/__pycache__/_glib.cpython-36.pyc
/usr/lib/python3.6/site-packages/slip/_wrappers/_glib.py
/usr/lib/python3.6/site-packages/slip/util
/usr/lib/python3.6/site-packages/slip/util/__init__.py
/usr/lib/python3.6/site-packages/slip/util/__pycache__
/usr/lib/python3.6/site-packages/slip/util/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/slip/util/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/slip/util/__pycache__/files.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/slip/util/__pycache__/files.cpython-36.pyc
/usr/lib/python3.6/site-packages/slip/util/__pycache__/hookable.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/slip/util/__pycache__/hookable.cpython-36.pyc
/usr/lib/python3.6/site-packages/slip/util/files.py
/usr/lib/python3.6/site-packages/slip/util/hookable.py
/usr/share/doc/python3-slip
/usr/share/doc/python3-slip/COPYING
/usr/share/doc/python3-slip/dbus
/usr/share/doc/python3-slip/dbus/README
/usr/share/doc/python3-slip/dbus/example
/usr/share/doc/python3-slip/dbus/example/Makefile
/usr/share/doc/python3-slip/dbus/example/README
/usr/share/doc/python3-slip/dbus/example/example-conf-client.py
/usr/share/doc/python3-slip/dbus/example/example-conf-mechanism.py
/usr/share/doc/python3-slip/dbus/example/import_marker.py
/usr/share/doc/python3-slip/dbus/example/org.fedoraproject.slip.example.mechanism.conf
/usr/share/doc/python3-slip/dbus/example/org.fedoraproject.slip.example.mechanism.service
/usr/share/doc/python3-slip/dbus/example/org.fedoraproject.slip.example.policy
References
Summary
In this tutorial we learn how to install python3-slip
on Rocky Linux 8 using yum and dnf.