"Jupyter"의 두 판 사이의 차이

ph
이동: 둘러보기, 검색
잔글
잔글
5번째 줄: 5번째 줄:
 
  %config InlineBackend.figure_format = 'retina'
 
  %config InlineBackend.figure_format = 'retina'
 
[https://www.dataquest.io/blog/jupyter-notebook-tips-tricks-shortcuts/ 28 Jupyter Notebook tips, tricks, and shortcuts]
 
[https://www.dataquest.io/blog/jupyter-notebook-tips-tricks-shortcuts/ 28 Jupyter Notebook tips, tricks, and shortcuts]
 +
 +
save : <code>plt.savefig('loss.png', dpi=300)</code>
  
 
= ip error=
 
= ip error=

2019년 3월 8일 (금) 13:55 판

high resolution plot

%config InlineBackend.figure_format = 'retina'

28 Jupyter Notebook tips, tricks, and shortcuts

save : plt.savefig('loss.png', dpi=300)

ip error

Traceback (most recent call last):
  File "/home/xph/anaconda3/lib/python3.7/site-packages/traitlets/traitlets.py", line 528, in get
    value = obj._trait_values[self.name]
KeyError: 'allow_remote_access'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/xph/anaconda3/lib/python3.7/site-packages/notebook/notebookapp.py", line 869, in _default_allow_remote
    addr = ipaddress.ip_address(self.ip)
  File "/home/xph/anaconda3/lib/python3.7/ipaddress.py", line 54, in ip_address
    address)
ValueError: '' does not appear to be an IPv4 or IPv6 address

During handling of the above exception, another exception occurred:

If your jupyter_notebook_config.py file have a line like below

c.NotebookApp.ip = '*'

change that to

c.NotebookApp.ip = '0.0.0.0'

https://github.com/jupyter/notebook/issues/3946#issuecomment-423169943