原作者網址:https://blog.csdn.net/Hide_in_Code/article/details/80590747 (作者描述很詳細,從發現問題--查閱資料--分析問題--解決問題--最終自己的總結。牛🐂。)
我就直截了當的說解決方法吧,主要是記錄下自己遇到的問題。
使用pip安裝tensorflow報錯:ERROR: Could not find a version that satisfies the requirement tensorflow==1.15.0rc (from versions: none)
ERROR: No matching distribution found for tensorflow==1.15.0rc
解決辦法:
1、檢查python版本。好像目前tensorflow只支持python3.5.x 64bit~3.6.x 64bit版本。(重點:python版本必須是64bit的。32bit安裝tensorflow還是會報錯)
確認python版本是:python3.6.x-64bit,使用管理員權限直接在終端運行:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow ,就可以安裝成功。
我用的是:python3.6.4-64bit版本。