File size: 457 Bytes
3e90f8a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash
set -e

echo "Installing dependencies..."
apt-get update && apt-get install -y libblas-dev liblapack-dev cmake build-essential

echo "Cloning NGT repository..."
git clone https://github.com/jpmag7/NGT.git

cd NGT
mkdir build
cd build
cmake -DNGT_SHARED_MEMORY_ALLOCATOR=ON ..
make
make install
ldconfig /usr/local/lib

cd ../python
python3 setup.py sdist
pip3 install dist/ngt-2.2.4.tar.gz

cd ../..
rm -rf NGT

echo "NGT installation complete."