1. 程式人生 > >TensorFlow的安裝

TensorFlow的安裝

def 64bit 管理 IT 支持 pos orf mac 技術分享

? 1.Window,MacOS,Linux都已支持Tensorflow。
? 2.Window用戶只能使用python3.5(64bit)。MacOS,Linux支持python2.7和python3.3+。 ? 3.有GPU可以安裝帶GPU版本的,沒有GPU就安裝CPU版本的。
? 推薦安裝Anaconda,pip版本大於8.1。

? Windows安裝Tensorflow
CPU版本:
管理員方式打開命令提示符,輸入命令:pip install tensorflow GPU版本:
管理員方式打開命令提示符,輸入命令:pip install tensorflow-gpu

? 更新Tensorflow: pip uninstall tensorflow pip install tensorflow

CPU版本和GPU版本的區別是,GPU比CPU快,大概會快幾十倍的樣子,所以我選擇的是GPU版本,但要電腦帶有GPU處理器才行

? Linux和MacOS安裝Tensorflow CPU版本:
Python 2.7用戶:pip install tensorflow Python3.3+用戶:pip3 install tensorflow GPU版本:

Python 2.7用戶:pip install tensorflow-gpu Python3.3+用戶:pip3 install tensorflow-gpu

我安裝的是MacOS 的GPU版本,安裝的時候報錯,說:read time out (讀取超時) 技術分享圖片 出現read time out 的安裝命令: pip3 install tensorflow-gpu 解決方法:給命令加一個延時,此時的安裝命令是: pip3 --default-timeout=100 install tensorflow-gpu

TensorFlow的安裝