File tree Expand file tree Collapse file tree 3 files changed +5
-43
lines changed Expand file tree Collapse file tree 3 files changed +5
-43
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -194,14 +194,14 @@ conda install xeus=5.1.0 xeus-zmq=3.0.0 nlohmann_json
194
194
and enable the kernel by ` -DWITH_XEUS=yes` and install into ` $CONDA_PREFIX ` . For
195
195
example:
196
196
` ` `
197
- cmake \
197
+ cmake . -GNinja \
198
198
-DCMAKE_BUILD_TYPE=Debug \
199
199
-DWITH_LLVM=yes \
200
200
-DWITH_XEUS=yes \
201
201
-DCMAKE_PREFIX_PATH=" $CONDA_PREFIX " \
202
- -DCMAKE_INSTALL_PREFIX=" $CONDA_PREFIX " \
202
+ -DCMAKE_INSTALL_PREFIX=" $CONDA_PREFIX "
203
203
.
204
- cmake --build . -j4 --target install
204
+ ninja install
205
205
` ` `
206
206
To use it, install Jupyter (` conda install jupyter` ) and test that the LPython
207
207
kernel was found:
@@ -212,9 +212,9 @@ Then launch a Jupyter notebook as follows:
212
212
` ` `
213
213
jupyter notebook
214
214
` ` `
215
- Click ` New-> Python ` . To launch a terminal jupyter LPython console:
215
+ Click ` New-> LPython ` . To launch a terminal jupyter LPython console:
216
216
` ` `
217
- jupyter console --kernel=python
217
+ jupyter console --kernel=lpython
218
218
` ` `
219
219
220
220
# # Found a bug?
You can’t perform that action at this time.
0 commit comments