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
41
41
mkdir build
42
42
cd build
43
43
cmake -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
45
45
```
46
46
47
47
To 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
56
56
``` bash
57
57
cd ./test
58
58
pytest -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
64
59
```
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
43
43
mkdir build
44
44
cd build
45
45
cmake .. -D CMAKE_PREFIX_PATH=$CONDA_PREFIX -D CMAKE_INSTALL_PREFIX=$CONDA_PREFIX -D CMAKE_INSTALL_LIBDIR=lib
46
- make
46
+ make install
47
47
```
48
48
To test the build you execute the following to test the C++ tests
49
49
``` bash
54
54
``` bash
55
55
pytest -sv .
56
56
```
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.
62
58
63
59
## Installation within a mamba environment (wasm build instructions)
64
60
You can’t perform that action at this time.
0 commit comments