diff options
Diffstat (limited to 'candle-book/src/guide/installation.md')
-rw-r--r-- | candle-book/src/guide/installation.md | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/candle-book/src/guide/installation.md b/candle-book/src/guide/installation.md index 69752391..31845a36 100644 --- a/candle-book/src/guide/installation.md +++ b/candle-book/src/guide/installation.md @@ -38,25 +38,16 @@ cargo run Create a new app and add [`candle-core`](https://github.com/huggingface/candle/tree/main/candle-core) as follows: - -Start by creating a new app: - -```bash +``` cargo new myapp cd myapp cargo add --git https://github.com/huggingface/candle.git candle-core ``` -At this point, candle will be built **without** CUDA support. -To get CUDA support use the `cuda` feature -```bash -cargo add --git https://github.com/huggingface/candle.git candle-core --features cuda -``` - -You can check everything works properly: +Finally, run `cargo build` to make sure everything can be correctly built. -```bash -cargo build +``` +cargo run ``` **With mkl support** |