云服务器使用心得(3)

试用了几天三丰云的免费云服务器,说说应用经验。

5、在Jupyter notebook上进行机器学习

Jupyter notebook及其使用

  • 安装 使用容器 > docker pull jupyter/base-notebook
  • 运行 > docker run -p 8888:8888 jupyter/base-notebook
  • 重启 > docker start -a xxxx

docker中会显示:

To access the notebook, open this file in a browser: file:///home/jovyan/.local/share/jupyter/runtime/nbserver-6-open.html Or copy and paste one of these URLs: http://(a3b2f743a647 or 127.0.0.1):8888/?token=354f60a1db586acffe3159a848c99b8229cf19b45902c5ad

之类东西 ,照此办理就好。

  • 保留数据运行 any files written to ~/work in the container remain intact on the host
docker run –rm -p 8888:8888 -e JUPYTER_ENABLE_LAB=yes -v “$PWD”:/home/jh/py jupyter/base-notebook
  • 安装numpy 在Jupyter页面进入terminals new -> terminal
  • pip install numpy

    改天继续写。。。。

    你可能感兴趣的:(云服务)