Skip to content

dependent libraries

Max dml edited this page Oct 4, 2018 · 17 revisions

Analytic

If using pip:

# apt-get install python-pip
# apt-get install libmariadbclient-dev
# pip install numpy scipy pandas pyyaml sqlalchemy mysql-python 

If using conda:

# conda install numpy scipy pandas pyyaml sqlalchemy mysql-python

Runtime

# apt-get install gcc
# apt-get install g++    # Final compilation is done with g++ to support MSUs written in C++
# apt-get install check  # For unit tests

Webserver MSUs

# apt-get install libssl-dev   
# apt-get install libpcre3-dev
# apt-get install libzmq3-dev
# apt-get install libxml2-dev

NDLog MSUs

# apt-get install libgmp-dev

Controller

# apt-get install socat
# apt-get install haproxy

Database

$ sudo apt-get install mariadb-server cmake 
$ wget https://dev.mysql.com/get/Downloads/Connector-C/mysql-connector-c-6.1.11-src.tar.gz && tar xzf mysql-connector-c-6.1.11-src.tar.gz && cd mysql-connector-c-6.1.11-src/ && cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=/usr/local/share/mysql
$ make
$ sudo make install

GUI

# apt-get install nodejs-legacy
Clone this wiki locally