Use correct double quotes (#3853)

This commit is contained in:
qadzek
2025-01-27 01:33:35 +01:00
committed by GitHub
parent 8141d07da3
commit 82e77cedaf

View File

@@ -256,7 +256,7 @@ Commands may vary by Linux distro, and whether a `fish` or `zsh` shell is used.
Replace `<python_directory>` with the output of `python3 -c "import os, sys; print(os.path.dirname(sys.executable))"` Replace `<python_directory>` with the output of `python3 -c "import os, sys; print(os.path.dirname(sys.executable))"`
```bash ```bash
export PATH=$PATH:<python_directory> export PATH="$PATH:<python_directory>"
``` ```
[Code Quality: Tools and Best Practices]: https://realpython.com/python-code-quality/ [Code Quality: Tools and Best Practices]: https://realpython.com/python-code-quality/