- Python Deep Learning Cookbook
- Indra den Bakker
- 165字
- 2021-07-02 15:43:11
How to do it...
- If you haven't installed Jupyter yet, you can use the following command in your activated Anaconda environment on the server:
conda install jupyter
- Next, we move back to the terminal on our local machine.
- One option is to access the Jupyter Notebook running on a server using SSH-tunnelling. For example, when using Google Cloud Platform:
gcloud compute ssh --ssh-flag="-L 8888:localhost:8888" --zone "europe-west1-b" "instance-name"
You're now logged in to the server and port 8888 on your local machine will forward to the server with port 8888.
- Make sure to activate the correct Anaconda environment before proceeding (adjust the name of your environment accordingly):
source activate environment-deep-learning-cookbook
- You can create a dedicated directory for your Jupyter notebooks:
mkdir notebooks
cd notebooks
- You can now start the Jupyter environment as follows:
jupyter notebook
This will start Jupyter Notebook on your server. Next, you can go to your local browser and access the notebook with the link provided after starting the notebook, for example, http://localhost:8888/?token=1fa4e9aea99cd7be2b974557eee3d344ca3c992f5861834f.
推薦閱讀
- Python程序設計教程(第2版)
- FuelPHP Application Development Blueprints
- ClickHouse性能之巔:從架構設計解讀性能之謎
- Microsoft Exchange Server PowerShell Cookbook(Third Edition)
- Java異步編程實戰
- FreeSWITCH 1.6 Cookbook
- C語言程序設計
- Web程序設計(第二版)
- C#程序設計教程(第3版)
- Illustrator CS6設計與應用任務教程
- Moodle 3 Administration(Third Edition)
- 從零學Java設計模式
- R語言實戰(第2版)
- RESTful Web API Design with Node.js
- C語言程序設計