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

Last updated: April 27,2024

1. Install "python3-wheel" package

In this section, we are going to explain the necessary steps to install python3-wheel on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python3-wheel

2. Uninstall "python3-wheel" package

Please follow the steps below to uninstall python3-wheel on openSUSE Leap:

$ sudo zypper remove python3-wheel

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

Information for package python3-wheel:
--------------------------------------
Repository : Main Repository
Name : python3-wheel
Version : 0.32.3-150100.6.5.1
Arch : noarch
Vendor : SUSE LLC
Installed Size : 141.7 KiB
Installed : No
Status : not installed
Source package : python-wheel-0.32.3-150100.6.5.1.src
Upstream URL : https://github.com/pypa/wheel
Summary : A built-package format for Python
Description :
A built-package format for Python.
A wheel is a ZIP-format archive with a specially formatted filename
and the .whl extension. It is designed to contain all the files for a
PEP 376 compatible install in a way that is very close to the on-disk
format. Many packages will be properly installed with only the "Unpack"
step (simply extracting the file onto sys.path), and the unpacked archive
preserves enough information to "Spread" (copy data and scripts to their
final locations) at any later time.
The wheel project provides a bdist_wheel command for setuptools
(requires distribute >= 0.6.34). Wheel files can be
installed with a newer pip from https://github.com/pypa/pip
or with wheel's own command line utility.
The wheel documentation is at http://wheel.rtfd.org/. The
file format is documented in PEP 427
(http://www.python.org/dev/peps/pep-0427/).
The reference implementation is at http://bitbucket.org/dholth/wheel/