Python3 web environment, including third-party and self-built
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
- Remember that after
docker start jupyter-notebookis started for the first time,初始密码will be printed in the command line in the container. You need to use初始密码for subsequent logins and password changes.
docker pull jupyter/scipy-notebook
docker start --name jupyter-notebook -p 8888:8888 jupyter/scipy-notebook
docker start jupyter-notebook
Visit page
- Just visit http://127.0.0.1:8888/ in your browser