- 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.
推薦閱讀
- Java程序設(shè)計(jì)(慕課版)
- TypeScript入門與實(shí)戰(zhàn)
- Fundamentals of Linux
- Architecting the Industrial Internet
- WebRTC技術(shù)詳解:從0到1構(gòu)建多人視頻會(huì)議系統(tǒng)
- Learning PHP 7
- Learning jQuery(Fourth Edition)
- Quantum Computing and Blockchain in Business
- Xcode 6 Essentials
- HTML+CSS+JavaScript網(wǎng)頁制作:從入門到精通(第4版)
- Java EE 7 with GlassFish 4 Application Server
- PostgreSQL 12 High Availability Cookbook
- Enterprise Application Architecture with .NET Core
- Java核心技術(shù)速學(xué)版(第3版)
- Python深度學(xué)習(xí)與項(xiàng)目實(shí)戰(zhàn)