简体   繁体   中英

Error to install numpy in python 3.4

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?

Just do:

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

(without the space character before 'numpy')

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM