I encountered an error when deploying a Python Quart application. I had successfully deployed it before, but when I attempted to redeploy it, I encountered an error. To troubleshoot, I created a simple Python Quart app that just returns ‘hello world,’ but I still encountered the same error, I can’t install the latest Python Quart because of the default python version which is 3.7, provided by render.
- Requirement.txt:
quart==0.18.4
- Start command:
hypercorn -b 0.0.0.0:5000 app:app
- Source code:
from quart import Quart
app = Quart(__name__)
@app.route('/')
async def hello_world():
return 'Hello, World!'
- Error message