Hello, I have a problem to start recoll from a plugin for calibre.
(See this thread for more information
https://www.mobileread.com/forums/sho...84#post2485684)
I have following errors:
Code:
/usr/bin/recoll: /opt/calibre/lib/libz.so.1: no version information available (required by /usr/bin/recoll)
/usr/bin/recoll: /opt/calibre/lib/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by /usr/bin/recoll)
/usr/bin/recoll: /opt/calibre/lib/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by /usr/lib/libxapian.so.22)
This is the part of the relevant code:
Code:
from subprocess import Popen, PIPE, STDOUT
...
cmd = "/usr/bin/recoll -c /home/stanislav/recollplugin -b -t 'test' AND 'hallo'"
p = Popen(cmd, shell=True, stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True)
Can someone help me, its one of the last tasks to end my plugin. Nearly everything else works quite well now.
Thanks