GeneralizedOptimalSparseDecisionTrees
GeneralizedOptimalSparseDecisionTrees copied to clipboard
Install on docker container failing due to missing make file
I'm trying to install gosdt on a docker container (just to have a clean linux environment, I'm pretty sure the issue is unrelated to docker)
This is after all listed dependencies installed correctly. This is the bash output:
root@95578a67e637:/src# ./autobuild --install
./autobuild: 61: ./autobuild: make: not found
root@95578a67e637:/src# ./autobuild --install-python
./autobuild: 63: ./autobuild: make: not found
root@95578a67e637:/src# ls
Makefile Makefile.am Makefile.in README.md auto autobuild build config.status configure configure.ac doc experiments include log python setup.py src test
any suggestions?
The docker image is the slim python base image (3.7)
BTW i think auto/boost.sh has (i believe) a typo:
sudo apt-get install liboost-dev
sudo apt-get install liboost-all-dev
should read
sudo apt-get install libboost-dev
sudo apt-get install libboost-all-dev
Hey,
I run the following in my docker file and don't rely on the install script:
RUN apt-get install -y make build-essential libboost-dev libboost-all-dev ocl-icd-opencl-dev libgmp-dev libgmp10 libtbb-dev wiredtiger ocl-icd-opencl-dev vim
Can you provide a copy of your docker file?
Thanks,
VP