[Distutils] What does it mean for Python to "bundle pip"?

Paul Moore p.f.moore at gmail.com
Thu Aug 22 18:37:50 CEST 2013


On 22 August 2013 16:33, Chris Barker - NOAA Federal
<chris.barker at noaa.gov>wrote:

> But maybe this is all too much to bite off for pip and wheels. If we
> could get to a state where "pip install numpy" and "pip install scipy"
> would do something reasonable, if not optimized, I think that would be
> great! And it's really not a big deal to say:
>

That is essentially possible now.

1. Go to Christoph Gohlke's website and download his bdist_wininst
installers for numpy and scipy.
2. Make sure you have pip 1.4+, setuptools and wheel installed (you only
need wheel for the wheel convert step)
3. wheel convert numpy-*.exe; wheel convert scipy-*.exe
4. pip install numpy*.whl scipy*.whl

You need to manually choose the right wininst installers for your
architecture (or you can grab and wheel convert them all and let the
architecture tags choose the right ones).

I don't believe that Christoph's installers need a postinstall step, so the
architecture/instruction set issues don't apply. But I've only visually
checked and done some minimal use tests myself.

Paul.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/distutils-sig/attachments/20130822/4a3053de/attachment.html>


More information about the Distutils-SIG mailing list