美文网首页
安装python踩坑&如何安装whl

安装python踩坑&如何安装whl

作者: 锦绣拾年 | 来源:发表于2020-06-06 21:48 被阅读0次

    最近在新电脑上安装python,
    才发现有些坑。
    1)下载时注意下载64位python,好像官网默认32位,但是32位安不好TensorFlow
    2)这时候还会报错,比如numpy包、sklearn包,需要把这些包卸载重装。
    但是也会出现网很慢安装一次不成功。
    ERROR: THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS FILE. If you have updated the package versions, please update the hashes. Otherwise, examine the package contents carefully; someone may have tampered with them.
    执行以下命令

    pip install --upgrade --default-timeout=1000 numpy
    
    1. 安装pip 包, error: Microsoft Visual C++ 14.0 is required. Get it with "Build Tools for Visual Studio": https://visualstudio.microsoft.com/downloads/
      错误
      但是电脑上是有Microsoft Visual C++ 14.0的
      不知道怎么回事
      https://www.lfd.uci.edu/~gohlke/pythonlibs/#

    在↑网站搜索自己想要的包whl进行安装。
    下载后,在该目录下 pip install XX.whl即可

    相关文章

      网友评论

          本文标题:安装python踩坑&如何安装whl

          本文链接:https://www.haomeiwen.com/subject/ghfbzhtx.html