How To Install python3-debug on CentOS 7
Introduction
In this tutorial we learn how to install python3-debug on CentOS 7.
What is python3-debug
python3-debug provides a version of the Python runtime with numerous debugging features enabled, aimed at advanced Python users such as developers of Python extension modules. This version uses more memory and will be slower than the regular Python build, but is useful for tracking down reference-counting issues and other bugs. The bytecode format is unchanged, so that .pyc files are compatible between this and the standard version of Python, but the debugging features mean that C/C++ extension modules are ABI-incompatible and must be built for each version separately. The debug build shares installation directories with the standard Python runtime, so that .py and .pyc files can be shared. Compiled extension modules use a special ABI flag (“d”) in the filename, so extensions for both versions can co-exist in the same directory. python3-debug provides a version of the Python runtime with numerous debugging features enabled, aimed at advanced Python users such as developers of Python extension modules. This version uses more memory and will be slower than the regular Python build, but is useful for tracking down reference-counting issues and other bugs. The bytecode format is unchanged, so that .pyc files are compatible between this and the standard version of Python, but the debugging features mean that C/C++ extension modules are ABI-incompatible and must be built for each version separately. The debug build shares installation directories with the standard Python runtime, so that .py and .pyc files can be shared. Compiled extension modules use a special ABI flag (“d”) in the filename, so extensions for both versions can co-exist in the same directory.
We can use yum or dnf to install python3-debug on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install python3-debug.
Install python3-debug on CentOS 7 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install python3-debug using yum by running the following command:
sudo yum -y install python3-debug
Install python3-debug on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf using the following command.
sudo dnf makecache
After updating yum database, We can install python3-debug using dnf by running the following command:
sudo dnf -y install python3-debug
How To Uninstall python3-debug on CentOS 7
To uninstall only the python3-debug package we can use the following command:
sudo dnf remove python3-debug
References
Summary
In this tutorial we learn how to install python3-debug on CentOS 7 using yum and dnf.