Thursday, September 4, 2025
HomeLanguagesHow to run Flask App on Google Colab?

How to run Flask App on Google Colab?

Flask is a web framework in python language. This means flask provides you with tools, libraries and technologies that allow you to build a web application. This web application can be some web pages, a blog, a wiki or go as big as a web-based calendar application or a machine learning webapp.

Google Colab provides a VM(virtual machine) so we cannot access the localhost(all it does it route it to our local machine’s localhost) as we do on our local machine when running a local web server. What we can do is expose it to a public URL using ngrok. Here comes the Python library flask-ngrok.

How to use Flask on Google Colab?

To create google colab file go to this link:

https://colab.research.google.com/notebooks/intro.ipynb#recent=true

1) Create new notebook in google colab

2) Install flask-ngrok library in google colab

3) Nowadays, ngrok needs an authentication token to run apps on their server. So, you need to log in to ngrok website and get the authentication token. It will look something like the below image.

ngrok_auth_token_image

ngrok_authentication_token_page

After getting the authentication token, just copy and paste it into the provided space.

!pip install flask-ngrok
!ngrok authtoken 'your_auth_token'

Flask is already installed on google colab so you don’t need to install it again.

4) After that let’s create a simple Flask app

Python3




from flask import Flask
from flask_ngrok import run_with_ngrok
app = Flask(__name__)
run_with_ngrok(app)  
 
@app.route("/")
def home():
    return "<h1>GFG is great platform to learn</h1>"
   
app.run()


5) To run the code on google colab press shift+enter.

Output:

Click on this link to get the output:

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32260 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6625 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6747 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6694 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS