How to Install and Uninstall python38-numba Package on openSuSE Tumbleweed

Last updated: July 05,2024

1. Install "python38-numba" package

Please follow the guidelines below to install python38-numba on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python38-numba

2. Uninstall "python38-numba" package

Learn how to uninstall python38-numba on openSuSE Tumbleweed:

$ sudo zypper remove python38-numba

3. Information about the python38-numba package on openSuSE Tumbleweed

Information for package python38-numba:
---------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python38-numba
Version : 0.54.1-1.1
Arch : x86_64
Vendor : openSUSE
Installed Size : 23,1 MiB
Installed : No
Status : not installed
Source package : python-numba-0.54.1-1.1.src
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.