如何在 google colab 中使用 ngrok?
Posted
技术标签:
【中文标题】如何在 google colab 中使用 ngrok?【英文标题】:How can I work with ngrok in google colab? 【发布时间】:2021-12-15 03:08:56 【问题描述】:我在 Google Colab 中将这个解决方法与 ngrok 一起使用。我的目标是将一些数据帧隧道传输到公共 url,以便我可以与同事分享输出。
我如何安装 ngrok:
%%sh
# get ngrok
curl -O https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip
unzip ngrok-stable-linux-amd64.zip
我的 py 文件:
%%writefile dash_app.py
import pandas as pd
import dash
from dash import dcc
from dash import html
from dash import dash_table
external_stylesheets = ['https://codepen.io/chriddyp/pen/bWLwgP.css']
app = dash.Dash(__name__)#, external_stylesheets=external_stylesheets)
# Load Data
df = pd.read_excel('CM_Ratiosppt.xlsx')
#[df[i]=df[i].round(2) for i in df.columns]
# Build App
app.layout = dash_table.DataTable(
id='table',
columns=["name": i, "id": i for i in df.columns],
data=df.to_dict('records'),
)
if __name__ == '__main__':
app.run_server(debug=False)
# launch ngrok
get_ipython().system_raw('./ngrok http 8050 &')
!python dash_app.py
获取 ngrok 网址:
%%sh
# get url with ngrok
curl -s http://localhost:4040/api/tunnels | python3 -c "import sys, json; print(json.load(sys.stdin)['tunnels'][0]['public_url'])"
但是,我收到此错误:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/usr/lib/python3.7/json/__init__.py", line 296, in load
parse_constant=parse_constant, object_pairs_hook=object_pairs_hook, **kw)
File "/usr/lib/python3.7/json/__init__.py", line 348, in loads
return _default_decoder.decode(s)
File "/usr/lib/python3.7/json/decoder.py", line 337, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/usr/lib/python3.7/json/decoder.py", line 355, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
【问题讨论】:
【参考方案1】:安装您的谷歌驱动器并将其符号链接到 /drive
https://colab.research.google.com/github/shawwn/colab-tricks/blob/master/ngrok-tricks.ipynb
【讨论】:
以上是关于如何在 google colab 中使用 ngrok?的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Google 的 Colab 中安装 Python 包?
运行 R 内核时如何在 google Colab 中访问 shell
如何在 Google Colab 中编辑和保存文本文件 (.py)?