Use pip instead of uv pip in upgrade instructions (#2841)

This commit is contained in:
Jeremiah Lowin 2026-01-10 18:15:28 -05:00 committed by GitHub
commit df5765cef3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -129,7 +129,7 @@ def version(
console.print(
f"[bold]🎉 FastMCP update available:[/bold] [green]{newer_version}[/green]"
)
console.print("[dim]Run: uv pip install --upgrade fastmcp[/dim]")
console.print("[dim]Run: pip install --upgrade fastmcp[/dim]")
@app.command

View file

@ -267,7 +267,7 @@ def log_server_banner(server: FastMCP[Any]) -> None:
("🎉 Update available: ", "bold"),
(newer_version, "bold green"),
)
update_line2 = Text("Run: uv pip install --upgrade fastmcp", style="dim")
update_line2 = Text("Run: pip install --upgrade fastmcp", style="dim")
update_notice = Panel(
Group(Align.center(update_line1), Align.center(update_line2)),
border_style="blue",