首頁 > 軟體

Windows系統下安裝tensorflow的設定步驟

2022-07-19 18:01:41

一、環境設定

安裝:python3.8、Miniconda、Visual C++

1.1 安裝python3.8

進入python官網安裝下載Windows installer (64-bit)(我下載的版本)

1.2 安裝Miniconda

進入Miniconda官網安裝下載Miniconda3 Windows 64-bit(我下載的版本)

注意這裡下載的版本要與python版本對應。

1.3 安裝Visual C++

進入Visual C++官網安裝下載VC_redist.x64.exe

全部安裝完成後,點選左下角程式,如圖所示

二、安裝Tensorflow

Tensorflow分為CPU和GPU兩個版本安裝,由於自身電腦限制,只安裝了CPU版本,GPU版本更快(但我電腦不支援,需要NVIDIA GPU450+上版本),下面只介紹CPU版本的安裝

1)進入Anaconda Prompt頁面,輸入命令

pip install tensorflow -i https://pypi.doubanio.com/simple/

2)安裝其他輔助庫,pandas、matplotlib和notebook,輸入命令

pip install pandas matplotlib notebook -i https://pypi.doubanio.com/simple/

3)開啟notebook,輸入以下命令

jupyter notebook

或者(若上面打不開)

python -m notebook

然後會自動彈出一個視窗,顯示notebook頁面,點選new,然後點選Python 3 (ipykernel)即可新建一個程式設計環境。

然後,輸入import tensorflow as tfprint(tf.__version__)列印版本,點選執行或快捷鍵shift+Enter

即完成tensorflow的安裝。

到此這篇關於Windows系統下安裝tensorflow的文章就介紹到這了,更多相關Windows安裝tensorflow內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com