前言
創(chuàng)新互聯(lián)長(zhǎng)期為成百上千客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對(duì)不同對(duì)象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺(tái),與合作伙伴共同營(yíng)造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為山東企業(yè)提供專業(yè)的成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè),山東網(wǎng)站改版等技術(shù)服務(wù)。擁有十多年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。
google又一次成為大家膜拜的大神了。google大神在引導(dǎo)這機(jī)器學(xué)習(xí)的方向。 同時(shí)docker 也是一個(gè)非常好的工具,大大的方便了開發(fā)環(huán)境的構(gòu)建,之前需要配置安裝。 最近在自學(xué)機(jī)器學(xué)習(xí),大熱的Tensorflow自然不能錯(cuò)過(guò),所以首先解決安裝問(wèn)題,為了不影響本地環(huán)境,所以本文基于Docker來(lái)安裝Tensorflow,我的環(huán)境是Ubuntu16.04。
安裝Docker
Docker分為CE和EE,這里我們選擇CE,也就是常規(guī)的社區(qū)版,首先移除本機(jī)上可能存在的舊版本。
移除舊版本
$ sudo apt-get remove docker \ docker-engine \ docker.io
安裝可選內(nèi)核模塊
從Ubuntu14.04以后,某些裁剪后的系統(tǒng)會(huì)把一部分內(nèi)核模塊移到可選內(nèi)核包中,常以linux-image-extra-*開頭,而Docker推薦的存儲(chǔ)層驅(qū)動(dòng)AUFS包含在可選內(nèi)核模塊包中,所以還是建議安裝可選內(nèi)核模塊包的。可以使用以下命令安裝:
$ sudo apt-get update $ sudo apt-get install \ linux-image-extra-$(uname -r) \ linux-image-extra-virtual
證書及密鑰準(zhǔn)備
在正式安裝之前,我們需要添加證書以及HTTPS傳輸?shù)能浖员WC軟件下載過(guò)程中不被篡改:
$ sudo apt-get update $ sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ software-properties-common
添加軟件源的GPG密鑰:
$ curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add - # 官方源 # $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
最后添加Docker軟件源:
$ sudo add-apt-repository \ "deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu \ $(lsb_release -cs) \ stable" # 官方源 # $ sudo add-apt-repository \ # "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ # $(lsb_release -cs) \ # stable"
安裝Docker
$ sudo apt-get update $ sudo apt-get install docker-ce
建立docker用戶組
docker通常會(huì)使用Unix socket和Docker引擎通訊,通常只有root和docker用戶組的用戶才可以訪問(wèn)該socket,不然你就要一直sudo,所以最好把你當(dāng)前需要使用docker的用戶添加到docker用戶組中。
建立docker用戶組
$ sudo groupadd docker
將當(dāng)前用戶加入用戶組
$ sudo usermod -aG docker $USER
最后重新登錄下系統(tǒng)
測(cè)試Docker
確保服務(wù)啟動(dòng)
$ sudo service docker start
使用HelloWorld測(cè)試
測(cè)試安裝是否成功
docker run hello-world Unable to find image 'hello-world:latest' locally latest: Pulling from library/hello-world ca4f61b1923c: Pull complete Digest: sha256:083de497cff944f969d8499ab94f07134c50bcf5e6b9559b27182d3fa80ce3f7 Status: Downloaded newer image for hello-world:latest Hello from Docker! This message shows that your installation appears to be working correctly. To generate this message, Docker took the following steps: 1. The Docker client contacted the Docker daemon. 2. The Docker daemon pulled the "hello-world" image from the Docker Hub. (amd64) 3. The Docker daemon created a new container from that image which runs the executable that produces the output you are currently reading. 4. The Docker daemon streamed that output to the Docker client, which sent it to your terminal. To try something more ambitious, you can run an Ubuntu container with: $ docker run -it ubuntu bash Share images, automate workflows, and more with a free Docker ID: https://cloud.docker.com/ For more examples and ideas, visit: https://docs.docker.com/engine/userguide/
若能顯示,證明安裝成功。
安裝Tensorflow
有了Docker,安裝Tensorflow基本沒(méi)有什么難度。
下載鏡像
docker pull tensorflow/tensorflow
下載完畢后顯示:
Status: Downloaded newer image for tensorflow/tensorflow:latest
創(chuàng)建Tensorflow容器
docker run --name my-tensorflow -it -p 8888:8888 -v ~/tensorflow:/test/data tensorflow/tensorflow
輸入以上命令后,默認(rèn)容器就被啟動(dòng)了,命令行顯示:
[I 15:08:31.949 NotebookApp] Writing notebook server cookie secret to /root/.local/share/jupyter/runtime/notebook_cookie_secret [W 15:08:31.970 NotebookApp] WARNING: The notebook server is listening on all IP addresses and not using encryption. This is not recommended. [I 15:08:31.975 NotebookApp] Serving notebooks from local directory: /notebooks [I 15:08:31.975 NotebookApp] 0 active kernels [I 15:08:31.975 NotebookApp] The Jupyter Notebook is running at: [I 15:08:31.975 NotebookApp] http://[all ip addresses on your system]:8888/?token=649d7cab1734e01db75b6c2b476ea87aa0b24dde56662a27 [I 15:08:31.975 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation). [C 15:08:31.975 NotebookApp] Copy/paste this URL into your browser when you connect for the first time, to login with a token: ; [I 15:09:08.581 NotebookApp] 302 GET /?token=649d7cab1734e01db75b6c2b476ea87aa0b24dde56662a27 (172.17.0.1) 0.42ms
拷貝帶token的URL在瀏覽器打開
http://[all ip addresses on your system]:8888/?token=649d7cab1734e01db75b6c2b476ea87aa0b24dde56662a27
顯示如下:
顯示Jupyter Notebook,Jupyter Notebook(此前被稱為 IPython notebook)是一個(gè)交互式筆記本。示例中已經(jīng)顯示了Tensorflow的入門教程,點(diǎn)開一個(gè)可以看見
如上面這個(gè)例子,是使用tensorflow來(lái)使兩個(gè)array相加,我們點(diǎn)擊run,就可以看到運(yùn)行的結(jié)果了。
關(guān)閉容器
docker stop my-tensortflow
再次打開
docker start my-tensortflow
如果不喜歡用Jupyter Notebook,我們也可以創(chuàng)建基于命令行的容器
基于命令行的容器
docker run -it --name bash_tensorflow tensorflow/tensorflow /bin/bash
這樣我們就創(chuàng)建了名為bash_tensorflow的容器
還是用start命令啟動(dòng)容器:
docker start bash_tensorflow
再連接上容器:
docker attach bash_tensorflow
可以看到我們用終端連接上了容器,和操作Linux一樣了。
這個(gè)鏡像默認(rèn)沒(méi)有裝vim,所以自己又下載了vim來(lái)寫代碼。
至此,安裝過(guò)程結(jié)束。
總結(jié)
以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,如果有疑問(wèn)大家可以留言交流,謝謝大家對(duì)創(chuàng)新互聯(lián)的支持。