How to Install and Uninstall python3-Cython.x86_64 Package on Fedora 36

Last updated: October 08,2024

1. Install "python3-Cython.x86_64" package

Please follow the guidance below to install python3-Cython.x86_64 on Fedora 36

$ sudo dnf update $ sudo dnf install python3-Cython.x86_64

2. Uninstall "python3-Cython.x86_64" package

Please follow the guidance below to uninstall python3-Cython.x86_64 on Fedora 36:

$ sudo dnf remove python3-Cython.x86_64 $ sudo dnf autoremove

3. Information about the python3-Cython.x86_64 package on Fedora 36

Last metadata expiration check: 5:05:26 ago on Thu Sep 8 08:04:50 2022.
Available Packages
Name : python3-Cython
Version : 0.29.26
Release : 2.fc36
Architecture : x86_64
Size : 2.1 M
Source : Cython-0.29.26-2.fc36.src.rpm
Repository : fedora
Summary : Language for writing Python extension modules
URL : http://www.cython.org
License : ASL 2.0
Description : The Cython language makes writing C extensions for the Python language as easy
: as Python itself. Cython is a source code translator based on Pyrex,
: but supports more cutting edge functionality and optimizations.
:
: The Cython language is a superset of the Python language (almost all Python
: code is also valid Cython code), but Cython additionally supports optional
: static typing to natively call C functions, operate with C++ classes and
: declare fast C types on variables and class attributes.
: This allows the compiler to generate very efficient C code from Cython code.
:
: This makes Cython the ideal language for writing glue code for external C/C++
: libraries, and for fast C modules that speed up the execution of Python code.