File tree Expand file tree Collapse file tree 2 files changed +3
-12
lines changed Expand file tree Collapse file tree 2 files changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ You are now in a position to install xeus-cpp into this envirnoment. You can do
4141mkdir build
4242cd build
4343cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_PREFIX_PATH=$CONDA_PREFIX -D CMAKE_INSTALL_PREFIX=$CONDA_PREFIX -D CMAKE_INSTALL_LIBDIR=lib ..
44- make
44+ make install
4545```
4646
4747To check that everything is installed correctly you can run the c++ tests by executing the following
@@ -56,9 +56,4 @@ and the python tests by executing
5656``` bash
5757cd ./test
5858pytest -sv .
59- ```
60- Once the build is passing all the tests you can install it by executing the following from the test folder
61- ``` bash
62- cd ..
63- make install
6459```
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ Now you can compile the kernel from the source by executing (replace `$CONDA_PRE
4343mkdir build
4444cd build
4545cmake .. -D CMAKE_PREFIX_PATH=$CONDA_PREFIX -D CMAKE_INSTALL_PREFIX=$CONDA_PREFIX -D CMAKE_INSTALL_LIBDIR=lib
46- make
46+ make install
4747```
4848To test the build you execute the following to test the C++ tests
4949``` bash
5454``` bash
5555pytest -sv .
5656```
57- to perform the python tests. Once the build is passing all the tests you can install it by executing the following from the test folder
58- ``` bash
59- cd ..
60- make install
61- ```
57+ to perform the python tests.
6258
6359## Installation within a mamba environment (wasm build instructions)
6460
You can’t perform that action at this time.
0 commit comments