diff --git a/docs/platforms/python/index.mdx b/docs/platforms/python/index.mdx index e1845a252c6e75..07caa44492268a 100644 --- a/docs/platforms/python/index.mdx +++ b/docs/platforms/python/index.mdx @@ -31,8 +31,11 @@ categories: Install the Sentry SDK using [`pip`](https://pip.pypa.io/en/stable/): -```bash -pip install --upgrade sentry-sdk +```bash {tabTitle:pip} +pip install "sentry-sdk" +``` +```bash {tabTitle:uv} +uv add "sentry-sdk" ``` ## Configure diff --git a/docs/platforms/python/integrations/aiohttp/aiohttp-client.mdx b/docs/platforms/python/integrations/aiohttp/aiohttp-client.mdx index 2b8a20d91eae0b..57dbc0169162fa 100644 --- a/docs/platforms/python/integrations/aiohttp/aiohttp-client.mdx +++ b/docs/platforms/python/integrations/aiohttp/aiohttp-client.mdx @@ -13,8 +13,11 @@ This integration also supports AIOHTTP servers. See -```bash -pip install --upgrade 'sentry-sdk[opentelemetry]' +```bash {tabTitle:pip} +pip install "sentry-sdk[opentelemetry]" +``` +```bash {tabTitle:uv} +uv add "sentry-sdk[opentelemetry]" ```