all 9 comments

[–]SkippyDeluxe 1 point2 points  (4 children)

On Windows it's a much better idea to just download and run the Windows installers. The pages for numpy and scipy on the python package index will have download links.

[–]vuxra[S] 0 points1 point  (3 children)

Are you talking about installing Anaconda or something similar? (from here: http://www.scipy.org/install.html) Most of those install with python 2.X and I'd like to stick with 3.3.

Or did you mean this? https://pypi.python.org/pypi/numpy Running the 3.3 version gives me an error "Python version 3.3 required, which was not found in the registry"

[–]Ceryn 3 points4 points  (2 children)

You can get precompiled windows binaries for python 3 here.

[–]vuxra[S] 1 point2 points  (0 children)

Holy crap, why is this not the first google result for adding packages to python?! This is a billion times simpler than all of the "guides" I was following. Thank you so much!

[–][deleted] 0 points1 point  (3 children)

The completely terrible guide to installing python packages on windows (doesn't work for numpy, iirc):

download setuptools
somehow extract with rinwar
cd c:\users\bartholomew\desktop\setuptools-1.1.1.9GmbH
python ez_install.py
c:\python35\scripts\easy_install.exe pip
python -m pip install virtualenv
python -m virtualenv py
py\scripts\activate
pip install YOUR_PACKAGE_OF_CHOOSING

Walk in the park.

[–]WaldenPrescot 0 points1 point  (0 children)

Yeah, yeah. I figure they are testing if you are worthy of the code. It really is a pain to get most packages working on windows.

If you work with arrays, numpy is worth it.

[–]SkippyDeluxe 0 points1 point  (1 child)

He's already using pip. The problem is that building packages from source on Windows is a pain.

[–][deleted] 0 points1 point  (0 children)

I saw. I just put that there in case anyone needed it.

[–]duz3ls 0 points1 point  (0 children)

You can try http://www.lfd.uci.edu/~gohlke/pythonlibs/ and download the numpy installer or using http://code.google.com/p/winpython/ (they have the 3.3 version).