2017-08-16 155 views
0

我有:NanoPi NEO2(全志A5(ARM V8的x64)處理器,512MB RAM),我做了 什麼:Jupyter和aarch64

  1. apt-get install docker*
  2. docker pull konmeo/jupyter(有here
  3. docker run -it --rm -p 8888:8888 4fdcd3a6ff59 它說[C 19:38:32.851 NotebookApp] Running as root is not recommended. Use --allow-root to bypass.
  4. 我跑了docker run -it --rm -p 8888:8888 4fdcd3a6ff59 /usr/bin/jupyter notebook --allow-root,碼頭裏的一切都沒事

    [W 19:40:36.237 NotebookApp] server_extensions is deprecated, use nbserver_extensions 
    [I 19:40:36.287 NotebookApp] Writing notebook server cookie secret to /root/.local/share/jupyter/runtime/notebook_cookie_secret 
    [I 19:40:39.827 NotebookApp] hide_code: Attempting to load hid_code export handler extensions. 
    [I 19:40:39.839 NotebookApp] hide_code: Hide_code export handler extensions loaded. 
    [I 19:40:39.972 NotebookApp] Loading IPython parallel extension 
    [I 19:40:40.238 NotebookApp] [jupyter_nbextensions_configurator] enabled 0.2.4 
    [I 19:40:40.242 NotebookApp] Serving notebooks from local directory: /notebooks 
    [I 19:40:40.243 NotebookApp] 0 active kernels 
    [I 19:40:40.244 NotebookApp] The Jupyter Notebook is running at: http://localhost:8888/?token=89a3809bd589557e08e31d7fbd475e6e17bb333fe2311745 
    [I 19:40:40.245 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation). 
    [W 19:40:40.248 NotebookApp] No web browser found: could not locate runnable browser. 
    [C 19:40:40.250 NotebookApp] 
    
        Copy/paste this URL into your browser when you connect for the first time, 
    to login with a token: 
         http://localhost:8888/?token=89a3809bd589557e08e31d7fbd475e6e17bb333fe2311745 
    

    ,但我沒有訪問既不使用本地設備瀏覽器也使用http:// ip:8888 /在本地網絡

我應該做些什麼,使工作?

+0

您是否嘗試訪問提供的網址?你有沒有包含令牌?有沒有任何類型的防火牆阻止訪問端口8888? – ForceBru

+0

@ForceBru是的,完整的網址與令牌,沒有額外的防火牆規則 – Zonko

回答

0

嘗試將docker綁定到所有接口。

-p 0.0.0.0:8888:8888 
+0

Elinks說:無法檢索http:// localhost:8888 /&token = ....:連接重置由對方 – Zonko

+0

您是否嘗試擊中'localhost'在NanoPi本身或其他機器上? – OregonTrail

+0

在NanoPi上,這就是我擔心的原因 – Zonko