How To Install codespell on Fedora 36
Introduction
In this tutorial we learn how to install codespell
on Fedora 36.
What is codespell
codespell fixes common misspellings in text files. It’s designed primarily for checking misspelled words in source code, but it can be used with other files as well.
We can use yum
or dnf
to install codespell
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install codespell.
Install codespell on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install codespell
using dnf
by running the following command:
sudo dnf -y install codespell
Install codespell on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install codespell
using yum
by running the following command:
sudo yum -y install codespell
How To Uninstall codespell on Fedora 36
To uninstall only the codespell
package we can use the following command:
sudo dnf remove codespell
codespell Package Contents on Fedora 36
/usr/bin/codespell
/usr/lib/python3.10/site-packages/codespell-2.1.0-py3.10.egg-info
/usr/lib/python3.10/site-packages/codespell-2.1.0-py3.10.egg-info/PKG-INFO
/usr/lib/python3.10/site-packages/codespell-2.1.0-py3.10.egg-info/SOURCES.txt
/usr/lib/python3.10/site-packages/codespell-2.1.0-py3.10.egg-info/dependency_links.txt
/usr/lib/python3.10/site-packages/codespell-2.1.0-py3.10.egg-info/entry_points.txt
/usr/lib/python3.10/site-packages/codespell-2.1.0-py3.10.egg-info/not-zip-safe
/usr/lib/python3.10/site-packages/codespell-2.1.0-py3.10.egg-info/requires.txt
/usr/lib/python3.10/site-packages/codespell-2.1.0-py3.10.egg-info/top_level.txt
/usr/lib/python3.10/site-packages/codespell_lib
/usr/lib/python3.10/site-packages/codespell_lib/__init__.py
/usr/lib/python3.10/site-packages/codespell_lib/__main__.py
/usr/lib/python3.10/site-packages/codespell_lib/__pycache__
/usr/lib/python3.10/site-packages/codespell_lib/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/codespell_lib/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/codespell_lib/__pycache__/__main__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/codespell_lib/__pycache__/__main__.cpython-310.pyc
/usr/lib/python3.10/site-packages/codespell_lib/__pycache__/_codespell.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/codespell_lib/__pycache__/_codespell.cpython-310.pyc
/usr/lib/python3.10/site-packages/codespell_lib/_codespell.py
/usr/lib/python3.10/site-packages/codespell_lib/data
/usr/lib/python3.10/site-packages/codespell_lib/data/__init__.py
/usr/lib/python3.10/site-packages/codespell_lib/data/__pycache__
/usr/lib/python3.10/site-packages/codespell_lib/data/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/codespell_lib/data/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/codespell_lib/data/dictionary.txt
/usr/lib/python3.10/site-packages/codespell_lib/data/dictionary_code.txt
/usr/lib/python3.10/site-packages/codespell_lib/data/dictionary_en-GB_to_en-US.txt
/usr/lib/python3.10/site-packages/codespell_lib/data/dictionary_informal.txt
/usr/lib/python3.10/site-packages/codespell_lib/data/dictionary_names.txt
/usr/lib/python3.10/site-packages/codespell_lib/data/dictionary_rare.txt
/usr/lib/python3.10/site-packages/codespell_lib/data/dictionary_usage.txt
/usr/lib/python3.10/site-packages/codespell_lib/data/linux-kernel.exclude
/usr/share/doc/codespell
/usr/share/doc/codespell/README.rst
References
Summary
In this tutorial we learn how to install codespell
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).