diff options
author | Patrick von Platen <patrick.v.platen@gmail.com> | 2023-08-23 13:27:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-23 13:27:29 +0200 |
commit | c5e43ad0ab860066cf32b08892b70c2733a95802 (patch) | |
tree | 456626b7db40904a77f1cf33e3828999920bb5bb /candle-book | |
parent | 2c280007e8abad5eb4186ce0223fd7d60fd3fc58 (diff) | |
download | candle-c5e43ad0ab860066cf32b08892b70c2733a95802.tar.gz candle-c5e43ad0ab860066cf32b08892b70c2733a95802.tar.bz2 candle-c5e43ad0ab860066cf32b08892b70c2733a95802.zip |
Apply suggestions from code review
Diffstat (limited to 'candle-book')
-rw-r--r-- | candle-book/src/guide/installation.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/candle-book/src/guide/installation.md b/candle-book/src/guide/installation.md index 0b429566..467b477a 100644 --- a/candle-book/src/guide/installation.md +++ b/candle-book/src/guide/installation.md @@ -32,7 +32,7 @@ cargo add --git https://github.com/huggingface/candle.git candle-core --features Run `cargo build` to make sure everything can be correctly built. ```bash -cargo run +cargo build ``` **Without Cuda support**: @@ -45,10 +45,10 @@ cd myapp cargo add --git https://github.com/huggingface/candle.git candle-core ``` -Finally, run `cargo run` to make sure everything can be correctly built. +Finally, run `cargo build` to make sure everything can be correctly built. ```bash -cargo run +cargo build ``` **With mkl support** |