1

我正在学习示例教程,因此我可以将 Flask 与 Google Colab 一起使用。当我运行下面的代码时,一切正常,但是当我尝试访问该页面时,我得到一个隧道未找到错误。

!pip install flask 
!pip install flask-ngrok

from flask_ngrok import run_with_ngrok
from flask import Flask, render_template 

#Running the flask app 
app = Flask(__name__)
#We need to start ngrok when the app is run 
run_with_ngrok(app)
@app.route("/")
def hello_world():
  return 'Hello, World!'

app.run()

确切的错误是:

Tunnel 5a0d870b1966.ngrok.io not found

在我遵循的教程中,一切正常。请问有什么帮助吗?

4

0 回答 0