Pylucene 4.9.0 Ubuntu 14.04 Installation Importerror
I've been trying to install Pylucene on my Mac for a little over a week, and have given up on that in favor of trying to install it with Ubuntu through a virtual machine. I thought
Solution 1:
I had to add extra paths to my LD_LIBRARY_PATH
environment variable to get things working. The test here in the conda build script actually shows those variables.
export LD_LIBRARY_PATH=$PREFIX/lib:$PREFIX/jre/lib:$LD_LIBRARY_PATHexport LD_LIBRARY_PATH=$PREFIX/jre/lib/amd64:$LD_LIBRARY_PATHexport LD_LIBRARY_PATH=$PREFIX/jre/lib/amd64/server:$LD_LIBRARY_PATHexport LD_LIBRARY_PATH=$PREFIX/lib/python2.7/site-packages:$LD_LIBRARY_PATH
$PREFIX
here is the path to the anaconda folder. I currently install miniconda at /usr/conda
on my systems.
Post a Comment for "Pylucene 4.9.0 Ubuntu 14.04 Installation Importerror"