From 464e81ae3324ee9f954bfdeab2c75d3782f068e1 Mon Sep 17 00:00:00 2001 From: James Kutter Date: Sat, 14 Dec 2024 21:51:44 -0500 Subject: [PATCH] change example so it works as is on powershell and cmd --- docs/guides/install-python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/install-python.md b/docs/guides/install-python.md index 6865eb878c57..3a027ade1c03 100644 --- a/docs/guides/install-python.md +++ b/docs/guides/install-python.md @@ -89,7 +89,7 @@ automatically download Python versions when they are required. For example, the download Python 3.12 if it was not installed: ```console -$ uv run --python 3.12 python -c 'print("hello world")' +$ uv run --python 3.12 python -c "print('hello world')" ``` Even if a specific Python version is not requested, uv will download the latest version on demand.