Skip to content

Commit fec6094

Browse files
Update docs/advanced/environment-variables.md
"macOS" consistency Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent 5971483 commit fec6094

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/advanced/environment-variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Not every package will use every variable below, but these are some of the most
4949
| Variable | Example Value | Purpose |
5050
|---|---|---|
5151
| `PATH` | `Linux/macOS: /opt/custom/bin:/usr/local/bin:/usr/bin`<br>`Windows: C:\Tools;C:\Windows\System32` | Controls where the OS looks for executables and shared tooling. This is useful when a helper binary or compiler needs to be found before the system default. |
52-
| `LD_PRELOAD` | `/usr/lib/libtcmalloc.so` | Preloads a shared library before the target process starts. This is mainly a Linux and MacOS troubleshooting variable for advanced cases such as custom allocators, compatibility shims, or injected hooks. |
52+
| `LD_PRELOAD` | `/usr/lib/libtcmalloc.so` | Preloads a shared library before the target process starts. This is mainly a Linux and macOS troubleshooting variable for advanced cases such as custom allocators, compatibility shims, or injected hooks. |
5353
| `PIP_CACHE_DIR` | `Linux/macOS: /mnt/drive/pip-cache`<br>`Windows: D:\pip-cache` | Moves pip's download and wheel cache to a different drive. This can help when your system drive is small or you want repeated installs to reuse cached artifacts. |
5454
| `PIP_TIMEOUT` | `60` | Sets pip's HTTP timeout in seconds. This is useful when downloads fail on slower connections, high-latency links, or package sources that respond slowly. |
5555
| `PIP_RETRIES` | `8` | Controls how many times pip retries failed network requests. This can help when installs are mostly working but occasionally fail because of transient connection or CDN issues. |

0 commit comments

Comments
 (0)