Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install wheel via python pip




wheel - A built-package format for Python, it belongs to Classifiers:

- Topic :: System
- Topic :: System :: Archiving
- Topic :: System :: Archiving :: Packaging

When you know about this project and you want to new install wheel to support your project or you get trouble as ModuleNotFoundError: No module named "wheel" or ImportError: cannot import name "wheel" in your project, let follow this tutorial to install wheel



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_wheel_env

- Active the virtual environment

test_wheel_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_wheel_env

- Active the virtual environment

source test_wheel_env/bin/active


Step 2: OK, now, let flow below content to start the installation wheel

To install wheel on Windows(CMD):

py -m pip install wheel

To install wheel on Unix/macOs:

pip install wheel


Step 3: If you want to install a specific wheel version, add ==<wheel version> to the end command line

Example:

pip install wheel==0.1


Please see the version list below table:

VersionReleased dateCommand
wheel 0.37.12021-12-22T12:22:00Windows:

py -m pip install wheel==0.37.1

Unix/macOs:

pip install wheel==0.37.1

wheel 0.37.02021-08-09T20:48:33Windows:

py -m pip install wheel==0.37.0

Unix/macOs:

pip install wheel==0.37.0

wheel 0.36.22020-12-13T18:09:07Windows:

py -m pip install wheel==0.36.2

Unix/macOs:

pip install wheel==0.36.2

wheel 0.36.12020-12-04T14:03:53Windows:

py -m pip install wheel==0.36.1

Unix/macOs:

pip install wheel==0.36.1

wheel 0.36.02020-12-01T08:59:30Windows:

py -m pip install wheel==0.36.0

Unix/macOs:

pip install wheel==0.36.0

wheel 0.35.12020-08-14T19:23:59Windows:

py -m pip install wheel==0.35.1

Unix/macOs:

pip install wheel==0.35.1

wheel 0.35.02020-08-13T21:37:01Windows:

py -m pip install wheel==0.35.0

Unix/macOs:

pip install wheel==0.35.0

wheel 0.34.22020-01-30T22:22:49Windows:

py -m pip install wheel==0.34.2

Unix/macOs:

pip install wheel==0.34.2

wheel 0.34.12020-01-27T20:28:27Windows:

py -m pip install wheel==0.34.1

Unix/macOs:

pip install wheel==0.34.1

wheel 0.34.02020-01-27T08:24:12Windows:

py -m pip install wheel==0.34.0

Unix/macOs:

pip install wheel==0.34.0

wheel 0.33.62019-08-18T10:08:47Windows:

py -m pip install wheel==0.33.6

Unix/macOs:

pip install wheel==0.33.6

wheel 0.33.52019-08-17T17:18:57Windows:

py -m pip install wheel==0.33.5

Unix/macOs:

pip install wheel==0.33.5

wheel 0.33.42019-05-11T21:47:53Windows:

py -m pip install wheel==0.33.4

Unix/macOs:

pip install wheel==0.33.4

wheel 0.33.12019-02-19T14:17:06Windows:

py -m pip install wheel==0.33.1

Unix/macOs:

pip install wheel==0.33.1

wheel 0.33.02019-02-12T07:09:01Windows:

py -m pip install wheel==0.33.0

Unix/macOs:

pip install wheel==0.33.0

wheel 0.32.32018-11-19T00:25:58Windows:

py -m pip install wheel==0.32.3

Unix/macOs:

pip install wheel==0.32.3

wheel 0.32.22018-10-20T20:09:52Windows:

py -m pip install wheel==0.32.2

Unix/macOs:

pip install wheel==0.32.2

wheel 0.32.12018-10-04T06:48:16Windows:

py -m pip install wheel==0.32.1

Unix/macOs:

pip install wheel==0.32.1

wheel 0.32.02018-09-29T15:42:50Windows:

py -m pip install wheel==0.32.0

Unix/macOs:

pip install wheel==0.32.0

wheel 0.31.12018-05-13T17:28:23Windows:

py -m pip install wheel==0.31.1

Unix/macOs:

pip install wheel==0.31.1

wheel 0.31.02018-04-01T20:40:42Windows:

py -m pip install wheel==0.31.0

Unix/macOs:

pip install wheel==0.31.0

wheel 0.30.02017-09-10T22:12:00Windows:

py -m pip install wheel==0.30.0

Unix/macOs:

pip install wheel==0.30.0

wheel 0.29.02016-02-06T17:22:38Windows:

py -m pip install wheel==0.29.0

Unix/macOs:

pip install wheel==0.29.0

wheel 0.28.02016-02-05T21:38:13Windows:

py -m pip install wheel==0.28.0

Unix/macOs:

pip install wheel==0.28.0

wheel 0.27.02016-02-05T16:43:32Windows:

py -m pip install wheel==0.27.0

Unix/macOs:

pip install wheel==0.27.0

wheel 0.26.02015-09-18T18:07:19Windows:

py -m pip install wheel==0.26.0

Unix/macOs:

pip install wheel==0.26.0

wheel 0.25.02015-09-17T01:18:11Windows:

py -m pip install wheel==0.25.0

Unix/macOs:

pip install wheel==0.25.0

wheel 0.24.02014-07-06T17:31:37Windows:

py -m pip install wheel==0.24.0

Unix/macOs:

pip install wheel==0.24.0

wheel 0.23.02014-04-01T02:08:02Windows:

py -m pip install wheel==0.23.0

Unix/macOs:

pip install wheel==0.23.0

wheel 0.22.02013-09-15T22:09:18Windows:

py -m pip install wheel==0.22.0

Unix/macOs:

pip install wheel==0.22.0

wheel 0.21.02013-07-20T16:20:56Windows:

py -m pip install wheel==0.21.0

Unix/macOs:

pip install wheel==0.21.0

wheel 0.19.02013-07-19T16:06:34Windows:

py -m pip install wheel==0.19.0

Unix/macOs:

pip install wheel==0.19.0

wheel 0.18.02013-07-04T23:53:10Windows:

py -m pip install wheel==0.18.0

Unix/macOs:

pip install wheel==0.18.0

wheel 0.17.02013-06-23T18:37:50Windows:

py -m pip install wheel==0.17.0

Unix/macOs:

pip install wheel==0.17.0

wheel 0.16.02013-04-30T01:43:30Windows:

py -m pip install wheel==0.16.0

Unix/macOs:

pip install wheel==0.16.0

wheel 0.15.02013-01-15T02:51:15Windows:

py -m pip install wheel==0.15.0

Unix/macOs:

pip install wheel==0.15.0

wheel 0.14.02012-10-27T20:15:36Windows:

py -m pip install wheel==0.14.0

Unix/macOs:

pip install wheel==0.14.0

wheel 0.13.02012-10-18T00:16:49Windows:

py -m pip install wheel==0.13.0

Unix/macOs:

pip install wheel==0.13.0

wheel 0.12.02012-10-06T12:34:46Windows:

py -m pip install wheel==0.12.0

Unix/macOs:

pip install wheel==0.12.0

wheel 0.11.02012-10-06T12:19:31Windows:

py -m pip install wheel==0.11.0

Unix/macOs:

pip install wheel==0.11.0

wheel 0.10.32012-10-03T22:56:17Windows:

py -m pip install wheel==0.10.3

Unix/macOs:

pip install wheel==0.10.3

wheel 0.10.22012-10-03T01:12:18Windows:

py -m pip install wheel==0.10.2

Unix/macOs:

pip install wheel==0.10.2

wheel 0.10.12012-10-01T02:56:05Windows:

py -m pip install wheel==0.10.1

Unix/macOs:

pip install wheel==0.10.1

wheel 0.10.02012-10-01T02:20:29Windows:

py -m pip install wheel==0.10.0

Unix/macOs:

pip install wheel==0.10.0

wheel 0.9.72012-09-20T15:53:33Windows:

py -m pip install wheel==0.9.7

Unix/macOs:

pip install wheel==0.9.7

wheel 0.9.62012-09-20T01:47:20Windows:

py -m pip install wheel==0.9.6

Unix/macOs:

pip install wheel==0.9.6

wheel 0.9.52012-09-16T03:05:26Windows:

py -m pip install wheel==0.9.5

Unix/macOs:

pip install wheel==0.9.5

wheel 0.9.42012-09-11T12:33:29Windows:

py -m pip install wheel==0.9.4

Unix/macOs:

pip install wheel==0.9.4

wheel 0.9.32012-09-11T02:50:30Windows:

py -m pip install wheel==0.9.3

Unix/macOs:

pip install wheel==0.9.3

wheel 0.9.22012-08-29T23:36:34Windows:

py -m pip install wheel==0.9.2

Unix/macOs:

pip install wheel==0.9.2

wheel 0.9.12012-08-28T23:08:23Windows:

py -m pip install wheel==0.9.1

Unix/macOs:

pip install wheel==0.9.1

wheel 0.92012-08-23T03:11:29Windows:

py -m pip install wheel==0.9

Unix/macOs:

pip install wheel==0.9

wheel 0.82012-08-17T17:49:32Windows:

py -m pip install wheel==0.8

Unix/macOs:

pip install wheel==0.8

wheel 0.72012-07-28T12:26:17Windows:

py -m pip install wheel==0.7

Unix/macOs:

pip install wheel==0.7

wheel 0.62012-07-23T16:29:59Windows:

py -m pip install wheel==0.6

Unix/macOs:

pip install wheel==0.6

wheel 0.52012-07-17T16:24:19Windows:

py -m pip install wheel==0.5

Unix/macOs:

pip install wheel==0.5

wheel 0.4.22012-07-12T17:58:58Windows:

py -m pip install wheel==0.4.2

Unix/macOs:

pip install wheel==0.4.2

wheel 0.4.12012-07-12T04:03:16Windows:

py -m pip install wheel==0.4.1

Unix/macOs:

pip install wheel==0.4.1

wheel 0.42012-07-12T04:02:33Windows:

py -m pip install wheel==0.4

Unix/macOs:

pip install wheel==0.4

wheel 0.32012-07-05T01:34:44Windows:

py -m pip install wheel==0.3

Unix/macOs:

pip install wheel==0.3

wheel 0.22012-07-03T11:17:35Windows:

py -m pip install wheel==0.2

Unix/macOs:

pip install wheel==0.2

wheel 0.12012-07-01T05:33:20Windows:

py -m pip install wheel==0.1

Unix/macOs:

pip install wheel==0.1


Step 4: Otherwise, you can install wheel from local archives:

Download the distribution file from wheel-0.37.1.tar.gz or the specific wheel version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_wheel_downloaded_file>

On Unix/macOs:

pip install <path_to_wheel_downloaded_file>


List distribution:


Project link:

- Homepage
- Changelog
- Documentation
- Issue Tracker