blob: f716b09208c7b1081787f48149b7d471c2f5b9d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
From the top level directory run the following for linux.
```
cargo build --profile=release-with-debug --package candle-pyo3 && cp -f ./target/release-with-debug/libcandle.so candle.so
PYTHONPATH=. python3 candle-pyo3/test.py
```bash
Or for macOS users:
```bash
cargo build --profile=release-with-debug --package candle-pyo3 && cp -f ./target/release-with-debug/libcandle.dylib candle.so
PYTHONPATH=. python3 candle-pyo3/test.py
```
|