On Mon, Jan 28, 2019 at 01:24:14PM -0800, Robert Edgar wrote: > I am trying to build your gnubg-nn code so that I can reproduce your > results, but I haven't been able to resolve this error from configure: > > configure: error: "Needs python devel" > > The package python-devel is already installed. Any suggestions?
The configure part is not very polished. Python usage is mandatory, but it is not enabled by default (and the error message is misleading). ./configure --with-python or, if python3 would be the default, ./configure --with-python=python2 should work Note that this is relatively old code. It needs python2 and doesn't build by default with gcc 9 or clang 7 ; I suppose one needs to add some flag to specify an older C++ version. _______________________________________________ Bug-gnubg mailing list [email protected] https://lists.gnu.org/mailman/listinfo/bug-gnubg
