Skip to content

Commit 0645ecb

Browse files
committed
fix: suggest limited cores and jobs when building example to avoid oom
1 parent 19aec7e commit 0645ecb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernels/src/kernels/init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def run_init(args: Namespace) -> None:
6262
print("\nNext steps:")
6363
print(f" cd {kernel_name}")
6464
print(" cachix use huggingface")
65-
print(" nix run .#build-and-copy -L")
65+
print(" nix run -L --max-jobs 1 --cores 8 .#build-and-copy")
6666
print(" uv run example.py")
6767

6868

0 commit comments

Comments
 (0)