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

Last updated: September 20,2024

1. Install "python2-numba" package

Please follow the step by step instructions below to install python2-numba on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python2-numba

2. Uninstall "python2-numba" package

This is a short guide on how to uninstall python2-numba on openSUSE Leap:

$ sudo zypper remove python2-numba

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

Information for package python2-numba:
--------------------------------------
Repository : Main Repository
Name : python2-numba
Version : 0.37.0-bp153.1.18
Arch : x86_64
Vendor : openSUSE
Installed Size : 13,8 MiB
Installed : No
Status : not installed
Source package : python-numba-0.37.0-bp153.1.18.src
Summary : Compiling Python code 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.