我想jupyter官方提供了一些镜像搭建一个数学计算的docker容器,数学计算使用jupyter/datascience-notebook
比较合适但是下载失败,所以使用基础的镜像jupyter/base-notebook:latest
docker pull jupyter/base-notebook:latest
docker run -p 80:8888 --name jupyter -d a954c1f0a0b5
# 网页中打开jupyter需要提供token,下面是查看token的方法
docker exec -it jupyter bash
jupyter notebook list
科学计算的库需要自己在jupyter/base-notebook:latest
容器中手工安装
conda install numpy
conda install sympy
conda install matplotlib
会有各种安装错误,所以使用pip安装
pip install matplotlib==3.5.3 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
标签:jupyter,notebook,conda,install,docker,base,安装
From: https://www.cnblogs.com/Netsharp/p/17487264.html