pointlessからnumpy,scipy導入し、pandas導入を試み
pandas導入時に「dlopen failed: cannot locate symbol "__fixunstfsi"」が回避出来ないのですがよい方法ありますか?

$ apt updatedlopen failed: cannot locate symbol "__fixunstfsi"
$ apt upgrade
$ apt install wget
$ hash -r
$ wget https://its-pointless.github.io/setup-pointless-repo.sh
$ bash setup-pointless-repo.sh
$ apt install clang python python-dev fftw libzmq libzmq-dev freetype freetype-dev libpng libpng-dev pkg-config
$ python --version
Python 3.7.2
$ apt install numpy scipy
$ pip list
Package Version
---------- --------
numpy 1.15.4
pip 18.1
scipy 1.2.0rc1
setuptools 40.6.2

$ termux-wake-lock
$ pip install -vvv pandas

sed -i 's/.\/numpy-1.15.4-py3.7-linux-aarch64.egg/.\/numpy-1.15.4.egg/g' /data/data/com.termux/files/usr/lib/python3.7/site-packages/easy-install.pth
mv /data/data/com.termux/files/usr/lib/python3.7/site-packages/numpy-1.15.4-py3.7-linux-aarch64.egg /data/data/com.termux/files/usr/lib/python3.7/site-packages/numpy-1.15.4.egg

$ pip install -vvv pandas
Original error was: dlopen failed: cannot locate symbol "__fixunstfsi" referenced by "/data/data/com.termux/files/usr/lib/python3.7/site-packages/numpy-1.15.4.egg/numpy/core/multiarray.cpython-37m.so"...