Replace back ticks with single quotes (#3157)

Back ticks attempt to execute program and capture output.  Should be using single quote marks.
This commit is contained in:
RJ Nowling 2025-08-18 07:52:30 -05:00 committed by GitHub
commit ac48a607d1

View file

@ -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
```