How To Install python3-rfc3986 on Rocky Linux 8
Introduction
In this tutorial we learn how to install python3-rfc3986
on Rocky Linux 8.
What is python3-rfc3986
A Python implementation of RFC 3986 including validation and authority parsing.
We can use yum
or dnf
to install python3-rfc3986
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install python3-rfc3986.
Install python3-rfc3986 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-rfc3986
using dnf
by running the following command:
sudo dnf -y install python3-rfc3986
Install python3-rfc3986 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-rfc3986
using yum
by running the following command:
sudo yum -y install python3-rfc3986
How To Uninstall python3-rfc3986 on Rocky Linux 8
To uninstall only the python3-rfc3986
package we can use the following command:
sudo dnf remove python3-rfc3986
python3-rfc3986 Package Contents on Rocky Linux 8
/usr/lib/python3.6/site-packages/rfc3986
/usr/lib/python3.6/site-packages/rfc3986-1.4.0-py3.6.egg-info
/usr/lib/python3.6/site-packages/rfc3986-1.4.0-py3.6.egg-info/PKG-INFO
/usr/lib/python3.6/site-packages/rfc3986-1.4.0-py3.6.egg-info/SOURCES.txt
/usr/lib/python3.6/site-packages/rfc3986-1.4.0-py3.6.egg-info/dependency_links.txt
/usr/lib/python3.6/site-packages/rfc3986-1.4.0-py3.6.egg-info/requires.txt
/usr/lib/python3.6/site-packages/rfc3986-1.4.0-py3.6.egg-info/top_level.txt
/usr/lib/python3.6/site-packages/rfc3986/__init__.py
/usr/lib/python3.6/site-packages/rfc3986/__pycache__
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/_mixin.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/_mixin.cpython-36.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/abnf_regexp.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/abnf_regexp.cpython-36.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/api.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/api.cpython-36.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/builder.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/builder.cpython-36.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/compat.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/compat.cpython-36.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/exceptions.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/exceptions.cpython-36.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/iri.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/iri.cpython-36.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/misc.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/misc.cpython-36.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/normalizers.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/normalizers.cpython-36.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/parseresult.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/parseresult.cpython-36.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/uri.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/uri.cpython-36.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/validators.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/rfc3986/__pycache__/validators.cpython-36.pyc
/usr/lib/python3.6/site-packages/rfc3986/_mixin.py
/usr/lib/python3.6/site-packages/rfc3986/abnf_regexp.py
/usr/lib/python3.6/site-packages/rfc3986/api.py
/usr/lib/python3.6/site-packages/rfc3986/builder.py
/usr/lib/python3.6/site-packages/rfc3986/compat.py
/usr/lib/python3.6/site-packages/rfc3986/exceptions.py
/usr/lib/python3.6/site-packages/rfc3986/iri.py
/usr/lib/python3.6/site-packages/rfc3986/misc.py
/usr/lib/python3.6/site-packages/rfc3986/normalizers.py
/usr/lib/python3.6/site-packages/rfc3986/parseresult.py
/usr/lib/python3.6/site-packages/rfc3986/uri.py
/usr/lib/python3.6/site-packages/rfc3986/validators.py
/usr/share/doc/python3-rfc3986
/usr/share/doc/python3-rfc3986/LICENSE
/usr/share/doc/python3-rfc3986/README.rst
References
Summary
In this tutorial we learn how to install python3-rfc3986
on Rocky Linux 8 using yum and dnf.