无法 运行 AppEngine Bigquery 示例
Unable to run AppEngine Bigquery example
我正在尝试 运行 在
中找到的 Bigquery 示例
python-docs-samples/appengine/standard_python37/bigquery
我去了那个文件夹 运行
pip install -r requirements.txt
从那里我 运行
python main.py
我的本地主机启动 (http://localhost:8080)。但是,当我转到 URL 时,它说 "This site can't be reached." 我做错了什么?
我必须在 main 函数下添加这个
app.run(host='127.0.0.1', port=8080, debug=True)
我正在尝试 运行 在
中找到的 Bigquery 示例python-docs-samples/appengine/standard_python37/bigquery
我去了那个文件夹 运行
pip install -r requirements.txt
从那里我 运行
python main.py
我的本地主机启动 (http://localhost:8080)。但是,当我转到 URL 时,它说 "This site can't be reached." 我做错了什么?
我必须在 main 函数下添加这个
app.run(host='127.0.0.1', port=8080, debug=True)