This repo is outdated, the prototype is rewritten from scratch in a Rust programming languge, see new repository.
conda create -y -n hyperon python=3.6
conda activate hyperon
conda install -y -c conda-forge cxxtest pybind11 nose
mkdir -p build
cd build
cmake ..
make
make test
After building the library it can be installed to the system using the commands:
cd build
sudo make install
sudo ldconfig
The following command can be used to check if the library is installed successfully:
python -c "import hyperon"
cd .circleci
docker build -t trueagi/hyperon-ci .