最近在新电脑上安装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
- 安装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即可
网友评论