From effd38d0f6437e9cb497ad2851e44acddb91c507 Mon Sep 17 00:00:00 2001 From: RJ Nowling Date: Thu, 14 Aug 2025 13:20:29 -0500 Subject: [PATCH] Replace back ticks with single quotes 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 3a51992bee..6a2ba39319 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 ```