2

I have Python 3.4.3 on windows 8.1. I downloaded numpy to my downloads folder, unzipped it to downloads/numpy-1.9.1 and copied it to python34/lib and renamed it to numpy

michael zxc858
  • 407
  • 5
  • 7

1 Answers1

-1

Try pip. It can be installed with

easy_install pip

if you don't have it already. Then, it's just a matter of

pip install numpy
Luke Taylor
  • 8,631
  • 8
  • 54
  • 92
  • 2
    Why would adding "sudo before it and type in your password" helped on windows 8.1? Even if, I doubt it will work as installing numpy requires lots of compiling. – Marcin Mar 02 '15 at 04:08
  • Sorry. I didn't know that sudo won't work on windows. I'll edit the post. – Luke Taylor Mar 02 '15 at 04:55
  • This almost certainly won't work. Installing numpy via pip requires a working toolchain in order to build the C extensions, which is far from trivial to set up on Windows. – ali_m Jan 03 '16 at 18:55