内容简介:首先使用上面的命令会下载并运行容器,容器启动并运行以后,安装
首先使用 deepo
提供的容器:
$ docker run -it -p 8888:8888 ufoym/deepo:cpu
上面的命令会下载并运行容器,容器启动并运行以后,安装 juypter
:
$ pip install jupyter
安装好以后,运行容器:
$ jupyter notebook --no-browser --ip=0.0.0.0 --allow-root --NotebookApp.token= --notebook-dir='/'
此时已经可以看到 jupyter-notebook
的运行了:
http://127.0.0.1:8888
不过需要注意的是,这个jupyter所使用的文件系统,是docker内部的文件系统,会随着容器的销毁而销毁,所以最好是映射容器外部的文件系统到容器内部,这样就可以在host上面管理notebook,在容器中运行notebook,从而避免notebook因为容器的销毁而删除。
∎
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- RecyclerView使用指南(一)—— 基本使用
- 如何使用Meteorjs使用URL参数
- 使用 defer 还是不使用 defer?
- 使用 Typescript 加强 Vuex 使用体验
- [译] 何时使用 Rust?何时使用 Go?
- UDP协议的正确使用场合(谨慎使用)
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Scalable Internet Architectures
Theo Schlossnagle / Sams Publishing / 2006-7-31 / USD 49.99
As a developer, you are aware of the increasing concern amongst developers and site architects that websites be able to handle the vast number of visitors that flood the Internet on a daily basis. Sc......一起来看看 《Scalable Internet Architectures》 这本书的介绍吧!