小編給大家分享一下MacOS如何安裝TensorFlow,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
網(wǎng)站建設(shè)公司,為您提供網(wǎng)站建設(shè),網(wǎng)站制作,網(wǎng)頁(yè)設(shè)計(jì)及定制網(wǎng)站建設(shè)服務(wù),專注于成都企業(yè)網(wǎng)站定制,高端網(wǎng)頁(yè)制作,對(duì)成都石雕等多個(gè)行業(yè)擁有豐富的網(wǎng)站建設(shè)經(jīng)驗(yàn)的網(wǎng)站建設(shè)公司。專業(yè)網(wǎng)站設(shè)計(jì),網(wǎng)站優(yōu)化推廣哪家好,專業(yè)成都網(wǎng)站推廣優(yōu)化,H5建站,響應(yīng)式網(wǎng)站。
TensorFlow
是一個(gè)端到端開(kāi)源機(jī)器學(xué)習(xí)平臺(tái)。它擁有一個(gè)包含各種工具、庫(kù)和社區(qū)資源的全面靈活生態(tài)系統(tǒng),可以讓研究人員推動(dòng)機(jī)器學(xué)習(xí)領(lǐng)域的先進(jìn)技術(shù)的。
TensorFlow
安裝的前提是系統(tǒng)安裝了 Python 2.5 或更高版本,教程中的例子是以 Python 3.6(Anaconda 3 版)為基礎(chǔ)設(shè)計(jì)的。為了安裝 TensorFlow
,首先確保你已經(jīng)安裝了 Anaconda??梢詮木W(wǎng)址(https://www.anaconda.com/distribution/#download-section)中下載并安裝適用于 Windows/macOS 或 Linux 的 Anaconda。
這個(gè)是
macos
的連接,一個(gè)是命令行的,一個(gè)是GUI的https://repo.anaconda.com/archive/Anaconda3-2019.10-MacOSX-x86_64.sh
https://repo.anaconda.com/archive/Anaconda3-2019.10-MacOSX-x86_64.pkg
關(guān)于安裝 anaconda
, 可以參考官方的文檔。
https://docs.anaconda.com/anaconda/install/
執(zhí)行這個(gè)命令source ~/.bash_profile
, 其實(shí)查看這個(gè)文件.bash_profile
,關(guān)鍵的信息export PATH="/opt/anaconda3/bin:$PATH"
,就是配置anaconda的環(huán)境變量。
然后執(zhí)行conda -V
(base) ? OpenSource conda -V
conda 4.7.12
這一步可以省略,但是配置為國(guó)內(nèi)的源之后,速度快的飛起來(lái)。sudo vi /Users/
username/Library/Application\ Support/pip/pip.conf
,然后修改里面的內(nèi)容為下面的源。[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple/ [install] trusted-host=pypi.tuna.tsinghua.edu.cn ¨G0G python import tensorflow as tf hello = tf.constant('Hello, TensorFlow!') sess = tf.Session() print(sess.run(hello)) ¨K15K
看完了這篇文章,相信你對(duì)“MacOS如何安裝TensorFlow”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!