From ac48a607d1969acb2587ceecf95d3edd5e3d3ce4 Mon Sep 17 00:00:00 2001 From: RJ Nowling Date: Mon, 18 Aug 2025 07:52:30 -0500 Subject: [PATCH] Replace back ticks with single quotes (#3157) Back ticks attempt to execute program and capture output. Should be using single quote marks. --- blackwell/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blackwell/README.md b/blackwell/README.md index b679ce51db..b16ea52d03 100644 --- a/blackwell/README.md +++ b/blackwell/README.md @@ -30,7 +30,7 @@ The installation order is important, since we want the overwrite bundled depende Create a project dir and venv: ```bash - mkdir `unsloth-blackwell` && cd `unsloth-blackwell` + mkdir 'unsloth-blackwell' && cd 'unsloth-blackwell' uv venv .venv --python=3.12 --seed source .venv/bin/activate ```