Hacker News new | ask | show | jobs
by shoo 4618 days ago
here are some wheel links:

https://pypi.python.org/pypi/wheel

https://wheel.readthedocs.org/en/latest/index.html

https://bitbucket.org/dholth/wheel/

http://www.python.org/dev/peps/pep-0427/

i am using wheel (with pip) as a replacement for .exe installers to install some packages (numpy, scipy, py2exe, etc) on windows. i find it useful because you can automate the installation of a wheel archive using pip (with the typical .exe windows installers you need to click next several times...). the wheel command line utility also knows how to convert existing `.exe` installers to wheel archives.

1 comments

I read all that, I was more interested in information on the "eggs are dead" assertion.