Hi Tim, I've investigated the issue and to me it seems that it is also necessary to pass the --python option to the ./acprep clean, otherwise CMake does not try to find and use Python and removing CMakeCache.txt before ./acprep --python --debug update isn't enough to (re-)activate Python support for Ledger.
Here's what I've done: % export CXX=$(which clang++) # Had to install clang++ since, g++ would segfault in VirtualBox % ./acprep gitclean # Note that this may remove files you'd like to keep; use with caution! % ./acprep --python dependencies % ./acprep --python --output build clean % ./acprep --python --output build --jobs 2 update % export LC_ALL=en_US.UTF_8 # Otherwise I'd see an Exception during initialization: locale::facet::_S_create_c_locale name not valid % ./build/ledger python -- --version Python 2.7.6 % ./build/ledger python python/demo.py Welcome to the Ledger.Python demo! Demo completed successfully. Hope this helps, Alexis -- --- You received this message because you are subscribed to the Google Groups "Ledger" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
