I have a Mac with Big Sur and I tried installing NEST with a Conda environment as mentioned
here by
pulling in the latest code from Github. My commands look like this
conda create -n nestml_dev nomkl numpy scipy matplotlib ipython cython nose pytest
conda activate nestml_dev
<Pull the latest code from github>
mkdir nest-simulator-build
cd nest-simulator-build
cmake -DCMAKE_INSTALL_PREFIX:PATH=<nest_path> -DCMAKE_C_COMPILER=gcc-10 -DCMAKE_CXX_COMPILER=g++-10 <nest_src>
make -j4
make install
After this, if I try to import nest in python or run nest from the command line, I get the following error
OMP: Error #13: Assertion failure at kmp_csupport.cpp(590).
OMP: Hint Please submit a bug report with this message, compile and run commands used, and machine configuration info including native compiler and operating system versions. Faster response will be obtained by including
all program sources. For information on submitting this issue, please see http://www.intel.com/software/products/support/.
Abort trap: 6
Has anyone else seen this error? Any pointers on this would be helpful.