This topic describes how to install additional Python modules for use in the Data360
Analyze Python node.
Note: Packages are installed into the site Python library directory
which is defined by the
ls.brain.node.sitePythonLibDir server property and
by default points to the lib/python3/site-packages directory within the
Data360 Analyze site configuration directory.Installing Python 3 modules on Windows server
- Open Command Prompt and change to the
bindirectory of your Data360 Analyze installation.For example,
cd "C:\Program Files\Data360Analyze\bin" - Run the following script, replacing
<package-name>with the name of the package you want to install:pyinstall.bat <package-name>For example,
pyinstall.bat scipy
Installing Python 3 modules on Linux
Note: On a multi-user Linux system, a Data360 Analyze O/S
administrator user must run this command.
- Open a bash terminal window and change to the
bindirectory of your Data360 Analyze installation.For example,
cd /opt/Data360Analyze/bin - Run the following script, replacing
<package-name>with the name of the package you want to install:./pyinstall.sh <package-name>For example,
./pyinstall.sh scipy