Skip to content
Carl Pearson edited this page Jun 13, 2018 · 6 revisions

Power8

xgboost may have a problem building and linking.

You can solve this problem by building your own xgboost. Download xgboost and modify the Makefile to remove the -msse2 flag from gcc.

Then python setup.py install xgboost somewhere, and retry doing

python setup.py install for plasma.

Blue Waters

module load bwpy

Edit setup.py to remove the check for mpicc, seems just to be a proxy to check that mpi is installed

Edit setup.py to disallow keras 2.2

install_requires = ['keras>2.0.8,<2.2' ...

We want to install to a local path, I did it through PYTHONPATH. This is in my ~/.bashrc

export PYTHONPATH="$PPYTHONPATH:$HOME/pypath/lib/python"

Create a local path for it to be installed to

mkdir -p ~/pypath/lib/python
bwpy-environ -- python setup.py install --home=$HOME/pypath

Clone this wiki locally