How to Install and Uninstall python3-cysignals-devel.x86_64 Package on Fedora 39

Last updated: October 04,2024

1. Install "python3-cysignals-devel.x86_64" package

Please follow the instructions below to install python3-cysignals-devel.x86_64 on Fedora 39

$ sudo dnf update $ sudo dnf install python3-cysignals-devel.x86_64

2. Uninstall "python3-cysignals-devel.x86_64" package

Here is a brief guide to show you how to uninstall python3-cysignals-devel.x86_64 on Fedora 39:

$ sudo dnf remove python3-cysignals-devel.x86_64 $ sudo dnf autoremove

3. Information about the python3-cysignals-devel.x86_64 package on Fedora 39

Last metadata expiration check: 1:47:24 ago on Thu Mar 7 17:44:52 2024.
Available Packages
Name : python3-cysignals-devel
Version : 1.11.2
Release : 6.fc39
Architecture : x86_64
Size : 16 k
Source : python-cysignals-1.11.2-6.fc39.src.rpm
Repository : fedora
Summary : Interrupt and signal handling for Cython headers files
URL : https://github.com/sagemath/cysignals
License : LGPL-3.0-or-later
Description : When writing Cython code, special care must be taken to ensure that the
: code can be interrupted with CTRL-C. Since Cython optimizes for speed,
: Cython normally does not check for interrupts. For example, code like
: the following cannot be interrupted in Cython:
:
: while True:
: pass
:
: The cysignals package provides mechanisms to handle interrupts
: (and other signals and errors) in Cython code.
:
: See http://cysignals.readthedocs.org/ for the full documentation.