Problems installing sissopp

I am trying to install sissopp following the instructions in the Documentation. I am trying to install in Ubuntu 22.04.3 LTS by using WSL, so my computer has Windows.

I have installed libblas-dev, liblapack-dev, cmake, mpich (with sudo apt-get install) and Anaconda3. Later I cloned the repository and created the conda environment with the specific requirements.

After that, I installed the remaining packages by using ./build_third_party.bash, and after a lot of output, I continued as I did not see any kind of error. After this, the folder third_party has several folders corresponding to boost, Caliper, coin-or, fmt, gtest, nlopt. Therefore, I run export BOOST_ROOT=/home/dagar/sissopp/third_party/boost/1.79.0/ to use the respective package.

Finally, I created the build folder and run cmake -C initial_config.cmake ../ and I get the following result:

loading initial cache file initial_config.cmake
CMake Error: Not a file: /home/dagar/sissopp/build/initial_config.cmake
CMake Error: Error processing file: /home/dagar/sissopp/build/initial_config.cmake
-- The CXX compiler identification is GNU 11.4.0
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Will use the gcc (version: 11.4.0) compiler toolset.
-- Building dynamiclly linked libraries
-- Building the python bindings
-- Building the executable
-- Using 1 processes to build external projects.
-- Found OpenMP_CXX: -fopenmp (found version "4.5")
-- Found OpenMP: TRUE (found version "4.5")
-- Using OpenMP 4.5 directives
CMake Warning (dev) at CMakeLists.txt:154 (find_package):
  Policy CMP0148 is not set: The FindPythonInterp and FindPythonLibs modules
  are removed.  Run "cmake --help-policy CMP0148" for policy details.  Use
  the cmake_policy command to set the policy and suppress this warning.

This warning is for project developers.  Use -Wno-dev to suppress it.

-- Found PythonInterp: /home/dagar/anaconda3/envs/sissopp_env/bin/python3 (found suitable version "3.9.19", minimum required is "3")
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
-- Found Threads: TRUE
-- Could NOT find BLAS (missing: BLAS_LIBRARIES)
-- Could NOT find LAPACK (missing: LAPACK_LIBRARIES)
    Reason given by package: LAPACK could not be found because dependency BLAS could not be found.

-- Could NOT find BLAS (missing: BLAS_LIBRARIES)
-- Could NOT find LAPACK (missing: LAPACK_LIBRARIES)
    Reason given by package: LAPACK could not be found because dependency BLAS could not be found.

-- Looking for sgemm_
-- Looking for sgemm_ - not found
-- Looking for sgemm_
-- Looking for sgemm_ - found
-- Found BLAS: /usr/lib/x86_64-linux-gnu/libblas.so
-- Looking for cheev_
-- Looking for cheev_ - not found
-- Looking for cheev_
-- Looking for cheev_ - found
-- Found LAPACK: /usr/lib/x86_64-linux-gnu/liblapack.so;/usr/lib/x86_64-linux-gnu/libblas.so
-- Found MPI_CXX: /usr/lib/x86_64-linux-gnu/libmpichcxx.so (found version "4.0")
-- Found MPI: TRUE (found version "4.0")
-- Setting default Kokkos CXX standard to 17
-- The project name is: Kokkos
-- Using -std=c++17 for C++17 standard as feature
-- Built-in Execution Spaces:
--     Device Parallel: NoTypeDefined
--     Host Parallel: NoTypeDefined
--       Host Serial: SERIAL
--
-- Architectures:
-- Found TPLLIBDL: /usr/include
-- Using internal desul_atomics copy
-- Kokkos Devices: SERIAL, Kokkos Backends: SERIAL
-- pybind11 v2.12.0
-- Found PythonInterp: /home/dagar/anaconda3/envs/sissopp_env/bin/python3 (found suitable version "3.9.19", minimum required is "3.6")
-- Found PythonLibs: /home/dagar/anaconda3/envs/sissopp_env/lib/libpython3.9.so
-- Performing Test HAS_FLTO
-- Performing Test HAS_FLTO - Success
-- /home/dagar/anaconda3/envs/sissopp_env/lib/python3.9/site-packages/sissopp/
-- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE)
-- Doxygen needs to be installed to generate the doxygen documentation
CMake Warning (dev) at CMakeLists.txt:238 (find_package):
  Policy CMP0144 is not set: find_package uses upper-case <PACKAGENAME>_ROOT
  variables.  Run "cmake --help-policy CMP0144" for policy details.  Use the
  cmake_policy command to set the policy and suppress this warning.

  Environment variable BOOST_ROOT is set to:

    /home/dagar/sissopp/third_party/boost/1.79.0/

  For compatibility, find_package is ignoring the variable, but code in a
  .cmake module might still use it.
This warning is for project developers.  Use -Wno-dev to suppress it.

CMake Warning (dev) at CMakeLists.txt:238 (find_package):
  Policy CMP0167 is not set: The FindBoost module is removed.  Run "cmake
  --help-policy CMP0167" for policy details.  Use the cmake_policy command to
  set the policy and suppress this warning.

This warning is for project developers.  Use -Wno-dev to suppress it.

-- Found Boost: /home/dagar/sissopp/third_party/boost/1.79.0/gcc/11.4.0/lib/cmake/Boost-1.79.0/BoostConfig.cmake (found version "1.79.0") found components: filesystem system mpi serialization
-- Found CoinUtils: /home/dagar/sissopp/third_party/coin-or/gcc/11.4.0/lib/libCoinUtils.so
-- Found CoinUtils in /home/dagar/sissopp/third_party/coin-or/gcc/11.4.0/include
-- Found clp: /home/dagar/sissopp/third_party/coin-or/gcc/11.4.0/lib/libClp.so
-- Found Coin-Clp in /home/dagar/sissopp/third_party/coin-or/gcc/11.4.0/include
-- Configuring incomplete, errors occurred!

I am not sure where is the errors that did not allow the configuration, or where I can see these errors in order to debug it.

Thank you in advance, Diego Alejandro Garzón