中文 English

Python3 web environment, including third-party and self-built

Published: 2021-01-24
python web jupter scipy-notebook runtime docker jupyterlab

I needed to use the Python3 Web environment because of some family matters, so I collected them. The environment of the third-party website is very simple to use, but the shortcomings are also obvious. The last Python code cannot be saved.

Python3 environment provided by third-party websites

So I built an environment myself, and after struggling for a long time, I finally used Docker to build it, and it was done in just a few lines of code.

DockerAfter the installation is complete, run the following command to start the container.

Use Docker to pull and run the image

docker pull jupyter/scipy-notebook
docker start --name jupyter-notebook -p 8888:8888 jupyter/scipy-notebook
docker start jupyter-notebook

Visit page