Запустите приложение Dash в блокноте Google Colab - PullRequest
0 голосов
/ 05 декабря 2018

Как запустить приложение Dash (http://dash.plot.ly) из Google Colab (https://colab.research.google.com)?

)

1 Ответ

0 голосов
/ 05 декабря 2018

Насколько мне известно, в настоящее время нет простого способа сделать это.

Найдите ниже обходной путь, аналогичный настройке Tensorboard (https://www.dlology.com/blog/quick-guide-to-run-tensorboard-in-google-colab/).

Начните с ячейки кода, которая устанавливает все необходимые для этого обхода проблемы:

# How to run a Dash app in Google Colab

## Requirements

### Install ngrok
!wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip
!unzip ngrok-stable-linux-amd64.zip

### Run ngrok to tunnel Dash app port 8050 to the outside world. 
### This command runs in the background.
get_ipython().system_raw('./ngrok http 8050 &')

### Get the public URL where you can access the Dash app. Copy this URL.
! curl -s http://localhost:4040/api/tunnels | python3 -c \
    "import sys, json; print(json.load(sys.stdin)['tunnels'][0]['public_url'])"

### Install Dash
!pip install dash==0.31.1  # The core dash backend
!pip install dash-html-components==0.13.2  # HTML components
!pip install dash-core-components==0.39.0  # Supercharged components
!pip install dash-table==3.1.7  # Interactive DataTable component (new!)

Добавьте еще одну ячейку кода с вашим приложением Dash:

## Dash app (https://dash.plot.ly/getting-started)

### Save file with Dash app on the Google Colab machine
%%writefile my_app1.py
import dash
import dash_core_components as dcc
import dash_html_components as html

external_stylesheets = ['https://codepen.io/chriddyp/pen/bWLwgP.css']

app = dash.Dash(__name__, external_stylesheets=external_stylesheets)

app.layout = html.Div(children=[
    html.H1(children='Hello Dash'),

    html.Div(children='''
        Dash: A web application framework for Python.
    '''),

    dcc.Graph(
        id='example-graph',
        figure={
            'data': [
                {'x': [1, 2, 3], 'y': [4, 1, 2], 'type': 'bar', 'name': 'SF'},
                {'x': [1, 2, 3], 'y': [2, 4, 5], 'type': 'bar', 'name': u'Montréal'},
            ],
            'layout': {
                'title': 'Dash Data Visualization'
            }
        }
    )
])

if __name__ == '__main__':
    app.run_server(debug=True)

В последней ячейке кода вы можете запустить свое приложение Dash (эта ячейка будет занята до тех пор, пока вы не прекратите работу и, следовательно, не остановите свое приложение Dash)..

### Run Dash app
!python my_app1.py

Чтобы получить доступ к приложению Dash, скопируйте и вставьте ngrok.io-URL выше на новую вкладку браузера (НЕ 127.0.0.1:8050) и подождите несколько секунд.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...