GeneralizedOptimalSparseDecisionTrees icon indicating copy to clipboard operation
GeneralizedOptimalSparseDecisionTrees copied to clipboard

Install on docker container failing due to missing make file

Open icfly2 opened this issue 5 years ago • 1 comments

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

icfly2 avatar Feb 11 '21 09:02 icfly2

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

VibratingPig avatar Feb 25 '21 08:02 VibratingPig