later On Wed, Oct 28, 2020 at 2:00 AM <dorindabassey@gmail.com> wrote:
Yes, I have done that, before i got the error above. but i noticed that once i installed curl, and ran these "./install-deps.sh" "./do_cmake.sh" again, i was able to get some more dependencies now this is the error am recieving: https://paste.sh/fNyA_5fb#r7QJDagMxlRuHh6i591bB21s quite similar but this time the error output is about python3, however i have python 2.7 and python 3.8.0 installed on my machine.
You could try the following to see if it assists with debugging the issue. $ rm -rf build $ bash -x ./do_cmake.sh 2>&1|grep "^+ cmake" + cmake3 -DWITH_PYTHON3=3.8 -DWITH_CCACHE=ON .. The above gives you the base command you want to run later (it may be different to mine) that we add '--trace-expand' to shortly. $ rm -rf build $ mkdir build && cd $_ $ cmake3 -DWITH_PYTHON3=3.8 -DWITH_CCACHE=ON --trace-expand .. See if that gives you any more information about why it can't find python3. -- Cheers, Brad