-
Notifications
You must be signed in to change notification settings - Fork 5
dependent libraries
Max dml edited this page Oct 4, 2018
·
17 revisions
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
# 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
# apt-get install libssl-dev
# apt-get install libpcre3-dev
# apt-get install libzmq3-dev
# apt-get install libxml2-dev
# apt-get install libgmp-dev
# apt-get install socat
# apt-get install haproxy
$ 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
# apt-get install nodejs-legacy