anaconda3(自带Python3.8)+TensorFlow 2.3.1一直安装失败+Keras 2.4.3

TensorFlow一直安装失败,
有exception错误,
也有CondaHTTPError: HTTP 000 CONNECTION FAILED for url错误。
修改了C:\Users\Adminstrator.condarc文件,删除-default

channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
show_channel_urls: true

一顿乱操作后,应该是成功了,阿弥陀佛
anaconda3(自带Python3.8)+TensorFlow 2.3.1一直安装失败+Keras 2.4.3_第1张图片有warnings,查了一下使用 (type, 1) 或者 ‘1type’ 作为类型代名词的方式已被弃用;在numpy的未来版本中,将会被理解成 (type, (1,)) 或者 ‘(1,)type’

_np_qint8 = np.dtype([("qint8", np.int8, 1)])

修改成

_np_qint8 = np.dtype([("qint8", np.int8, (1,))])

成功,没报警告
在这里插入图片描述
最后,还是各种奇怪的问题没成功,对我又卸载重装了!
建议还是创建一个Python3.7的虚拟环境,
最开始用的清华的源,给我提示缺少GPU的东西,我只想安装个CPU,受一位博主文章启发,直接强制安装CPU

pip install tensorflow-cpu

成功了。。
anaconda3(自带Python3.8)+TensorFlow 2.3.1一直安装失败+Keras 2.4.3_第2张图片最后安装Keras,成功了
anaconda3(自带Python3.8)+TensorFlow 2.3.1一直安装失败+Keras 2.4.3_第3张图片启动jupyter notebook报错,
anaconda3(自带Python3.8)+TensorFlow 2.3.1一直安装失败+Keras 2.4.3_第4张图片参考这位博主
对路径进行了修改,成功了。。。
anaconda3(自带Python3.8)+TensorFlow 2.3.1一直安装失败+Keras 2.4.3_第5张图片

你可能感兴趣的:(Bug,anaconda,1024程序员节)