1. VPC Network
- External IP Address
2. change to static / 고정으로 변경
3. Create Firewall Rule
- add your port number
tcp: <your port number>
4. Jupyter를 설치 했다면...
After install jupyter notebook...
- create config file
$ jupyter notebook --generate-config
5. Edit Config file
6. add to jupyter_notebook_config.py
c = get_config()
c.NotebookApp.ip = '*'
c.NotebookApp.open_browser = False
c.NotebookApp.port = <your port number>
- Save
7. $ jupyter-notebook --no-browser --port=8888
- copy token id and paste it
8. finally
반응형
'IT > machine learning' 카테고리의 다른 글
Use Tensorboard on Jupyter Notebook without CLI (0) | 2019.01.23 |
---|---|
tensorflow keras running error about initializers (0) | 2019.01.22 |
[pytorch] difference between torch.Tensor and torch.LongTensor (0) | 2018.07.06 |
Calculate Convolutional Layer Output size (0) | 2018.07.05 |
GCP에서 VM 생성후 putty로 접속하는 방법 (0) | 2018.02.23 |