0

This question may be answered in other posts. If so please refer me to those. I want to install numpy in python 3.4 for win 32. I follow these steps:

  1. I downloaded file: numpy-1.13.3+mkl-cp34-cp34m-win32.whl
  2. In CMP in the path of c: python34\Scripts> I copy:

    pip install " C:\Users\Myname\Downloads\ numpy-1.13.3+mkl-cp34-cp34m-win32.whl"  (or pip3.4.exe install ....)
    

It does not install numpy. The error includes 8 lines like:

File "C: Python34\lib\site-package\pip\basecommand.py" line 215, in main status=self.run (options, args)

and finally

FileNotFoundError:[Error 2] No such file or directory: " C:\\Users\\Myname\\Downloads\\ numpy-1.13.3+mkl-cp34-cp34m-win32.whl"

Could you please help me to figure it out?

8
  • 2
    Do you try pip install numpy? Commented Jan 16, 2018 at 2:59
  • @kitman0804, no Commented Jan 16, 2018 at 3:28
  • 2
    You have a space bar character in your path, before "numpy", perhaps the error is related to that? Does the file show up when you try to "dir" it in the CMD? Commented Jan 16, 2018 at 4:05
  • @Maciek, thank you the problem was the space!!! Commented Jan 16, 2018 at 14:01
  • 1
    @Maciek why don't you just write an answer based on your comment? Commented Jan 18, 2018 at 12:04

1 Answer 1

1

Just do:

pip install " C:\Users\Myname\Downloads\numpy-1.13.3+mkl-cp34-cp34m-win32.whl"

(without the space character before 'numpy')

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.