summaryrefslogtreecommitdiff
path: root/candle-book/src/guide/installation.md
diff options
context:
space:
mode:
Diffstat (limited to 'candle-book/src/guide/installation.md')
-rw-r--r--candle-book/src/guide/installation.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/candle-book/src/guide/installation.md b/candle-book/src/guide/installation.md
index c909a5df..d2086e0c 100644
--- a/candle-book/src/guide/installation.md
+++ b/candle-book/src/guide/installation.md
@@ -5,13 +5,13 @@ Start by creating a new app:
```bash
cargo new myapp
cd myapp
-cargo add --git https://github.com/LaurentMazare/candle.git candle
+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/LaurentMazare/candle.git candle --features cuda
+cargo add --git https://github.com/huggingface/candle.git candle-core --features cuda
```
You can check everything works properly: