ivardu
ivardu

Reputation: 189

What is a wheel in python

After browsing through some pages still I'm not clear with the wheel purpose during the installation of any library. Can someone explain me in easily understandable way.

Failed to build pandas numpy ERROR: Could not build wheels for pandas, numpy which use PEP 517 and cannot be installed directly

Upvotes: 2

Views: 1286

Answers (1)

Jordan0
Jordan0

Reputation: 31

The wheels module helps build other packages if you're having issues try the following.

pip install wheel --upgrade

Upvotes: 2

Related Questions