How to Install and Uninstall python3-numexpr.x86_64 Package on CentOS Stream 9

Last updated: July 04,2024

1. Install "python3-numexpr.x86_64" package

This is a short guide on how to install python3-numexpr.x86_64 on CentOS Stream 9

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

2. Uninstall "python3-numexpr.x86_64" package

This tutorial shows how to uninstall python3-numexpr.x86_64 on CentOS Stream 9:

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

3. Information about the python3-numexpr.x86_64 package on CentOS Stream 9

Last metadata expiration check: 1:02:07 ago on Sat Mar 16 16:03:45 2024.
Available Packages
Name : python3-numexpr
Version : 2.8.4
Release : 1.el9
Architecture : x86_64
Size : 137 k
Source : python-numexpr-2.8.4-1.el9.src.rpm
Repository : epel
Summary : Fast numerical array expression evaluator for Python and NumPy
URL : https://github.com/pydata/numexpr
License : MIT
Description : The numexpr package evaluates multiple-operator array expressions many times
: faster than NumPy can. It accepts the expression as a string, analyzes it,
: rewrites it more efficiently, and compiles it to faster Python code on the
: fly. It’s the next best thing to writing the expression in C and compiling it
: with a specialized just-in-time (JIT) compiler, i.e. it does not require a
: compiler at runtime.