forked from SGpp/SGpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINSTRUCTIONS
More file actions
20 lines (14 loc) · 808 Bytes
/
INSTRUCTIONS
File metadata and controls
20 lines (14 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# ------------------------------------------------------------------------
# SG++ was successfully compiled. Update the your environment variables by
# executing the following code or adding it to your ~/.bashrc file
export LD_LIBRARY_PATH=$SGPP_BUILD_PATH:$LD_LIBRARY_PATH
# If you installed Python support execute the following from the root
# directory of SG++ to install the python library in your local
# site-packages folder
python3 setup.py install --user
# or use the internal python package structure of SG++ by executing the
# following code or by adding it to your ~/.bashrc file
export PYTHONPATH=$PYSGPP_PACKAGE_PATH:$PYTHONPATH
# For full Python support, we recommend additionally installing the Scipy
# package.
# ------------------------------------------------------------------------