- Matplotlib for Python Developers
- Aldrin Yim Claire Chung Allen Yu
- 143字
- 2021-08-27 18:48:18
Running Jupyter Notebook on a remote server
To open a notebook running on a remote server, you may set up port forwarding during SSH, as follows:
ssh –L 8888:localhost:8888 mary@remoteserver
Then you may open the notebook again with localhost:8888 as the URL.
When multiple users are running Jupyter Notebooks on the same server on the same port (say the default, 8888) and each uses the same port forwarding, there is a possibility that your notebook content will be forwarded to another user who cannot read his/her own content without changing the port. While this might be fixed with later releases, it is recommended to change the port from the default.
To upgrade from a previous version, run the following command:
pip3 install --upgrade matplotlib
pip will automatically collect and install the Matplotlib dependencies for you.
推薦閱讀
- JBoss Weld CDI for Java Platform
- The DevOps 2.3 Toolkit
- 大學(xué)計(jì)算機(jī)基礎(chǔ)(第三版)
- Java范例大全
- Mastering Adobe Captivate 2017(Fourth Edition)
- 軟件項(xiàng)目管理(第2版)
- ASP.NET Core 5.0開發(fā)入門與實(shí)戰(zhàn)
- 編程珠璣(續(xù))
- Building an RPG with Unity 2018
- Mathematica Data Analysis
- 深入淺出PostgreSQL
- 21天學(xué)通C++(第5版)
- C語言程序設(shè)計(jì)簡明教程:Qt實(shí)戰(zhàn)
- GitHub入門與實(shí)踐
- Vue.js 3應(yīng)用開發(fā)與核心源碼解析