forked from PPPLDeepLearning/plasma-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Building
Carl Pearson edited this page Jun 13, 2018
·
6 revisions
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.
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