mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-29 06:35:48 -04:00
48 lines
1.3 KiB
Bash
Executable file
48 lines
1.3 KiB
Bash
Executable file
#!/bin/bash
|
|
set -ex
|
|
|
|
PYBIND_BRANCH='master'
|
|
PYBIND_REPO='https://github.com/pybind/pybind11'
|
|
|
|
XTL_BRANCH='0.6.13'
|
|
XTL_REPO='https://github.com/xtensor-stack/xtl'
|
|
|
|
XTENSOR_BRANCH='0.21.3'
|
|
XTENSOR_REPO='https://github.com/xtensor-stack/xtensor'
|
|
|
|
XTENSOR_PYTHON_BRANCH='0.24.1'
|
|
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'
|
|
|
|
sudo apt-get install -y libblas-dev liblapack-dev
|
|
|
|
cd $HOME
|
|
git clone -b $PYBIND_BRANCH $PYBIND_REPO
|
|
cd pybind11 && mkdir build && cd build && cmake .. && sudo make install
|
|
pip install $HOME/pybind11
|
|
|
|
cd $HOME
|
|
git clone -b $XTL_BRANCH $XTL_REPO
|
|
cd xtl && mkdir build && cd build && cmake .. && sudo make install
|
|
|
|
cd $HOME
|
|
git clone -b $XTENSOR_BRANCH $XTENSOR_REPO
|
|
cd xtensor && mkdir build && cd build && cmake .. && sudo make install
|
|
|
|
cd $HOME
|
|
git clone -b $XTENSOR_PYTHON_BRANCH $XTENSOR_PYTHON_REPO
|
|
cd xtensor-python && mkdir build && cd build && cmake .. && sudo make install
|
|
|
|
cd $HOME
|
|
git clone -b $XTENSOR_BLAS_BRANCH $XTENSOR_BLAS_REPO
|
|
cd xtensor-blas && mkdir build && cd build && cmake .. && sudo make install
|
|
|
|
# Install wheel (remove when vectfit supports installation with build isolation)
|
|
pip install wheel
|
|
|
|
# Install vectfit
|
|
cd $HOME
|
|
git clone https://github.com/liangjg/vectfit.git
|
|
pip install --no-build-isolation ./vectfit
|