How to Install and Uninstall python2-debug.x86_64 Package on CentOS Stream 8

Last updated: May 18,2024

1. Install "python2-debug.x86_64" package

Learn how to install python2-debug.x86_64 on CentOS Stream 8

$ sudo dnf update $ sudo dnf install python2-debug.x86_64

2. Uninstall "python2-debug.x86_64" package

Please follow the step by step instructions below to uninstall python2-debug.x86_64 on CentOS Stream 8:

$ sudo dnf remove python2-debug.x86_64 $ sudo dnf autoremove

3. Information about the python2-debug.x86_64 package on CentOS Stream 8

Last metadata expiration check: 0:09:50 ago on Sun Feb 25 03:03:59 2024.
Available Packages
Name : python2-debug
Version : 2.7.18
Release : 17.module_el8+770+d35395c9
Architecture : x86_64
Size : 2.4 M
Source : python2-2.7.18-17.module_el8+770+d35395c9.src.rpm
Repository : appstream
Summary : Debug version of the Python 2 runtime
URL : https://www.python.org/
License : Python
Description : python2-debug provides a version of the Python 2 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 2 build,
: but is useful for tracking down reference-counting issues, and other bugs.
:
: The bytecodes are unchanged, so that .pyc files are compatible between the two
: version of Python 2, but the debugging features mean that C/C++ extension modules
: are ABI-incompatible with those built for the standard runtime.
:
: It shares installation directories with the standard Python 2 runtime, so that
: .py and .pyc files can be shared. All compiled extension modules gain a "_d"
: suffix ("foo_d.so" rather than "foo.so") so that each Python 2 implementation can
: load its own extensions.