The original project can be found here: Texpp on the Google Code
Texpp is a threefold C++ library with a Python interface containing:
- Stemmer
- Terms extractor
- TeX parser
Each part offers a set of Python API methods. Internally the library is tightly binded and reuses all components for efficient terms extraction from TeX documents (while being perfectly capable of working with any text sources).
TODO: describe pythonic API methods and illustrate with examples
During TeXpp installation you should specify version of Python(between 2 and 3). Сurrent version of Python avaliable to install from repository is 2.7 and 3.4. So, the recipy of installation TeXpp for certain version of Python is a bit different. Presumably installation make under Ubuntu 14.04 Trusty Tahr.
Here you can exclude one of Python version(Leave one of them: python3.4-dev or python2.7-dev).
sudo apt-get update
sudo apt-get install git gcc g++ cmake libicu-dev libboost-dev libboost-filesystem-dev libboost-regex-dev libboost-python-dev libboost-test-dev
sudo apt-get install python3.4-dev
sudo apt-get install python2.7-devAdditionally, for testing purposes one can install also a TeX Live package (caution: it is an about 3 Gb download)
sudo apt-get install texlive-full # Required only for testsFor Ubuntu 14.04 there is no Boost package for Python 3, so we have to compile it from the source.
wget -O boost_1_57_0.tar.gz http://sourceforge.net/projects/boost/files/boost/1.57.0/boost_1_57_0.tar.gz/download
tar xzvf boost_1_57_0.tar.gz
cd boost_1_57_0/
sudo apt-get updateboost build configuration in case Python3:
./bootstrap.sh --with-python=/usr/bin/python3 --with-python-root=/usr --prefix=/usr/localboost build configuration in case Python2:
./bootstrap.sh --with-python=/usr/bin/python2 --with-python-root=/usr --prefix=/usr/localstart Boost installation:
Additionally, to make compilation faster, you can force b2 to use maximum available amount of cores:
# Count available cores
n=`cat /proc/cpuinfo | grep "cpu cores" | uniq | awk '{print $NF}'`
sudo ./b2 --with=all -a -j $n install
sudo sh -c 'echo "/usr/local/lib" >> /etc/ld.so.conf.d/local.conf'
sudo ldconfig git clone https://github.com/Domest0s/texpp.git
cd texppThe CMakeLists.txt is different for different versions of Python, so you need to copy nesessary CMakeFiles.txt from CMakeListsFolder.
in case Python2 type:
cp CMakeListsFolder/CMakeListsPython2.txt CMakeLists.txtin case Python3 type:
cp CMakeListsFolder/CMakeListsPython3.txt CMakeLists.txtbuild:
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
makeTo run library tests also type
export BOOST_TEST_CATCH_SYSTEM_ERRORS="no"
make testCopy built libraries to the /opt/texpp/ directory and register them in the system.
sudo mkdir /opt/texpp
sudo cp texpy/texpy.so /opt/texpp/
sudo cp hrefkeywords/_chrefliterals.so /opt/texpp/
echo "/opt/texpp" >> texpp.conf
sudo mv texpp.conf /etc/ld.so.conf.d/
sudo ldconfig