pip安装whl文件及tensorflow安装

pip安装whl文件

  1. 安装.whl文件,首先我们要用命令提示符在cmd下,进入.whl文件所在目录。
  2. 指令为:指令为 pip install some.whl

tensorflow安装

出现错误:ImportError: Missingrequired dependencies [‘numpy’]
解决方法:必须安装numpy+mkl,而不能是简单的numpy

参考:
http://blog.csdn.net/u010099080/article/details/53418159(tensorflow安装)
http://blog.csdn.net/guotch/article/details/71598859(numpy与mkl)
http://blog.csdn.net/wzgl__wh/article/details/51238433(whl文件安装)

你可能感兴趣的:(python)