summaryrefslogtreecommitdiff
path: root/candle-book
diff options
context:
space:
mode:
authorPatrick von Platen <patrick.v.platen@gmail.com>2023-08-23 08:54:48 +0000
committerPatrick von Platen <patrick.v.platen@gmail.com>2023-08-23 08:54:48 +0000
commit7732bf62387d2370c1d01db39852b610bbbd385d (patch)
tree818a2d976dea2885cec31adfbfba45c1fae2e803 /candle-book
parent7c0ca80d3a4c238543cc705400643bf05d474007 (diff)
downloadcandle-7732bf62387d2370c1d01db39852b610bbbd385d.tar.gz
candle-7732bf62387d2370c1d01db39852b610bbbd385d.tar.bz2
candle-7732bf62387d2370c1d01db39852b610bbbd385d.zip
correct
Diffstat (limited to 'candle-book')
-rw-r--r--candle-book/src/guide/installation.md17
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**