Installation¶
Using the conda package¶
A package for xeus-cling is available on the conda package manager.
conda install -c conda-forge xeus-cling
From source with cmake¶
You can also install xeus-cling
from source with cmake. This requires that you have all the dependencies installed in the same prefix.
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/path/to/prefix ..
make install
On Windows platforms, from the source directory:
mkdir build
cd build
cmake -G "NMake Makefiles" -DCMAKE_INSTALL_PREFIX=/path/to/prefix ..
nmake
nmake install