How do I deploy a Python app using uv
? I don’t expect render to support uv
, but is there a way to deploy it as requirements.txt
?
You can run uv pip freeze > requirements.txt
before you commit your changes and use the default render build command that does pip install -r requirements.txt
. At least that is what we are doing.
1 Like