Skip to content

Commit b2838de

Browse files
committed
debugging NEST install with Python 3.9
1 parent fff6492 commit b2838de

1 file changed

Lines changed: 14 additions & 4 deletions

File tree

ci/install_nest.sh

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,20 @@ if [ "$TRAVIS_PYTHON_VERSION" == "3.9" ]; then
2626
mkdir -p $HOME/build/$NEST
2727
pushd $HOME/build/$NEST
2828
export VENV=`python -c "import sys; print(sys.prefix)"`;
29-
if [ "$TRAVIS_PYTHON_VERSION" == "3.9" ]; then
30-
ln -s /opt/python/3.9/lib/libpython3.9m.so $VENV/lib/libpython3.9.so;
31-
export PYTHON_INCLUDE_DIR=$VENV/include/python${TRAVIS_PYTHON_VERSION}m
32-
fi
29+
30+
echo -e "-- ls /opt/python/3.9/lib"
31+
ls -l /opt/python/3.9/lib;
32+
echo -e "-- ls $VENV/lib"
33+
ls -l $VENV/lib;
34+
echo -e "-- ls /opt/python/3.9/include/python3.9"
35+
ls /opt/python/3.9/include/python3.9;
36+
37+
ln -s /opt/python/3.9/lib/libpython3.9.so $VENV/lib/libpython3.9.so;
38+
ls -l $VENV/lib/libpython3.9.so
39+
#ln -s /opt/python/3.9/include/python3.9 $VENV/include/python3.9;
40+
#export PYTHON_INCLUDE_DIR=$VENV/include/python3.9;
41+
export PYTHON_INCLUDE_DIR=/opt/python/3.9/include/python3.9
42+
3343
cython --version;
3444
cmake --version;
3545
cmake -DCMAKE_INSTALL_PREFIX=$VENV \

0 commit comments

Comments
 (0)