The command sequence mkdir build && cd build && cmake .. && cd .. seems to be missing the make step. In my opinion, it should include make as follows: mkdir build && cd build && cmake .. && make && cd ... Otherwise, the compilation artifacts will not be generated. For example, if I don't run the make command and then try to run python 2_MGG_NP.py directly, an error will be displayed.
The command sequence
mkdir build && cd build && cmake .. && cd ..
seems to be missing the make step. In my opinion, it should include make as follows:mkdir build && cd build && cmake .. && make && cd ..
. Otherwise, the compilation artifacts will not be generated. For example, if I don't run the make command and then try to run python 2_MGG_NP.py directly, an error will be displayed.