在本項(xiàng)目中使用了docker容器搭建環(huán)境,Dockerfile 如下:
FROM tensorflow/tensorflow:1.14.0-gpu-py3
RUN pip install scipy==1.3.3
RUN pip install requests
RUN pip install Pillow
RUN pip install matplotlib
RUN pip install pandas
RUN pip install keras==2.2.4
RUN pip install scikit_learn==0.20.0
RUN pip install transformers==3.5.0
創(chuàng)建docker容器:
sudo docker build - < Dockerfile
創(chuàng)建成功之后給打上標(biāo)簽:
docker tag a7a1861d2150 datascience/text2animeface:v0.1
然后進(jìn)入容器:
sudo docker run --gpus all -it -p 8080:8080 -p 8888:8888 -d -v `pwd`:/mnt datascience/text2animeface:v0.1
然后安裝jupyter之后啟動(dòng)jupyter
jupyter-notebook --allow-root
問(wèn)題出現(xiàn),外面無(wú)法訪問(wèn)localhost:8888, telnet也不通,反復(fù)嘗試,不需要重新建立容器,直接使用以下命令啟動(dòng)jupyter即可:
jupyter-notebook --allow-root --ip=0.0.0.0 --port=8888
ip地址綁定到0.0.0.0也就是任意ip地址吧,端口8888,
到此這篇關(guān)于Docker容器開(kāi)jupyter不能訪問(wèn)到的解決方法的文章就介紹到這了,更多相關(guān)Docker jupyter不能訪問(wèn) 內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!