Issue With Installing Pylucene 6.5.0 On Linux
I recently moved to python3, so I'm trying to install the recent version of Pylucene (version 6.5.0) which is compatible with python3. jcc3/sources/jcc.cpp: In function ‘PyObject
Solution 1:
I had the same problem, was solved by setting __STDC_FORMAT_MACROS:
My JCC_CFLAGS is set to:
export JCC_CFLAGS="-v;-fno-strict-aliasing;-Wno-write-strings;-D__STDC_FORMAT_MACROS"
An example of an automated build script of JCC for conda is available at:
https://github.com/conda-forge/jcc-feedstock/blob/master/recipe/build.sh
Post a Comment for "Issue With Installing Pylucene 6.5.0 On Linux"