[PYTHON] Installieren Sie numba unter CentOS 7.2
numba kann leicht mit conda installiert werden, aber aus verschiedenen Gründen habe ich es mit pip installiert. Das Folgende ist das Verfahren. Darüber hinaus verwendet Python 2.7.
1. Installieren Sie cmake
- Laden Sie cmake-3.7.0-rc1-Linux-x86_64.sh von https://cmake.org/download/ herunter.
- Am Download-Ziel (z. B. / home / user / download) "sh cmake-3.7.0-rc1-Linux-x86_64.sh"
- Das Verzeichnis cmake-3.7.0-rc1-Linux-x86_64 wird erstellt und cmake darin installiert
2. Installieren Sie LLVM
- Laden Sie den LLVM-Quellcode von [http://llvm.org/releases/download.html#3.8.1] herunter (http://llvm.org/releases/download.html#3.8.1).
- Am Download-Ziel (z. B. / home / user / download) "tar xvfJ llvm-3.8.1.src.tar.xz"
cd llvm-3.8.1.src
mkdir build
cd build
../../cmake-3.7.0-rc1-Linux-x86_64/bin/cmake ..
make
sudo make install
3. Installieren Sie llvmlite
su
export LLVM_CONFIG=/usr/local/bin/llvm-config
yum install libstdc++-static
pip install llvmlite
exit
4. Installieren Sie numba
sudo pip install numba
5. Numba-Test
- Siehe http://yutori-datascience.hatenablog.com/entry/2014/12/09/235628 Erstellt und ausgeführt ein Testprogramm in ⇒ Es hat richtig funktioniert!