from flask import Flask app = Flask(__name__) if __name__ == '__main__': app.run(port=80) # Also make sure that nothing else is running on port 80