uv pip installing a remote pyproject.toml file via URL is broken, even though installing it locally works fine, as does installing a requirements.txt file either ...
from django.urls import path from app1.views import home urlpatterns = [path('', home),] from django.shortcuts import render def home(request): n1=5 result=fact(n1 ...