Ching-Chuan Chen's Blogger

Statistics, Machine Learning and Programming

0%

Start an Jupyter Lab With Julia built with MKL on Docker

安裝Docker-ce,並啟動。然後pull image,就可以啟動了。

1
2
3
4
5
6
7
8
9
10
11
12
# install docker
yum install -y yum-utils device-mapper-persistent-data lvm2
sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
yum install docker-ce -y
systemctl enable docker
systemctl start docker

# pull images and start
docker pull jamal0230/centos-mkl-julia-jupyter:latest

# run Jupyter Lab with Julia built with MKL. Then connect to https://localhost:8888
docker run -d -p 8888:8888 -e PASSWORD=password -e USE_HTTPS=yes --name julia_jupyter jamal0230/centos-mkl-julia-jupyter:latest