How to Install and Uninstall python3-numba Package on openSUSE Leap

Last updated: May 19,2024

1. Install "python3-numba" package

Please follow the steps below to install python3-numba on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python3-numba

2. Uninstall "python3-numba" package

Please follow the guidelines below to uninstall python3-numba on openSUSE Leap:

$ sudo zypper remove python3-numba

3. Information about the python3-numba package on openSUSE Leap

Information for package python3-numba:
--------------------------------------
Repository : Main Repository
Name : python3-numba
Version : 0.51.2-bp155.2.21
Arch : x86_64
Vendor : openSUSE
Installed Size : 21.2 MiB
Installed : No
Status : not installed
Source package : python-numba-0.51.2-bp155.2.21.src
Upstream URL : https://github.com/numba/numba
Summary : NumPy-aware optimizing compiler for Python using LLVM
Description :
Numba is a NumPy-aware optimizing compiler for Python. It uses the
LLVM compiler infrastructure to compile Python syntax to
machine code.
It is aware of NumPy arrays as typed memory regions and so can speed-up
code using NumPy arrays. Other, less well-typed code will be translated
to Python C-API calls, effectively removing the "interpreter", but not removing
the dynamic indirection.
Numba is also not a tracing JIT. It *compiles* your code before it gets
run, either using run-time type information or type information you provide
in the decorator.
Numba is a mechanism for producing machine code from Python syntax and typed
data structures such as those that exist in NumPy.