From 6fde0d358164dde5dbd3ddeac838ff94362430b2 Mon Sep 17 00:00:00 2001 From: Jingang Liang Date: Thu, 10 Sep 2020 15:31:21 +0800 Subject: [PATCH] pybind is required as well --- tools/ci/travis-install-vectfit.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/ci/travis-install-vectfit.sh b/tools/ci/travis-install-vectfit.sh index 1f2ca224d..b6f2c7286 100755 --- a/tools/ci/travis-install-vectfit.sh +++ b/tools/ci/travis-install-vectfit.sh @@ -1,7 +1,6 @@ #!/bin/bash set -ex -#pip3 install pybind11 PYBIND_BRANCH='master' PYBIND_REPO='https://github.com/pybind/pybind11' @@ -17,8 +16,10 @@ XTENSOR_PYTHON_REPO='https://github.com/xtensor-stack/xtensor-python' XTENSOR_BLAS_BRANCH='0.17.1' XTENSOR_BLAS_REPO='https://github.com/xtensor-stack/xtensor-blas' + cd $HOME git clone -b $PYBIND_BRANCH $PYBIND_REPO +pip install ./pybind11 cd pybind11 && mkdir build && cd build && cmake .. && sudo make install cd $HOME @@ -40,4 +41,4 @@ cd xtensor-blas && mkdir build && cd build && cmake .. && sudo make install # Install vectfit cd $HOME git clone https://github.com/liangjg/vectfit.git -pip3 install ./vectfit +pip install ./vectfit