Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No engine found. Your build might have failed. Aborting. [predictionio]

Tags:

predictionio

Please click this link to see the exact log i am seeing after running pio build. It fails as it can't find engine. Help would be much appreciated

like image 330
anshuman Avatar asked Mar 06 '17 10:03

anshuman


1 Answers

I meet the same problem, because I specified scala.version=2.11.8 when I build PredictionIO but the engine template I used was build with scala 2.10.

so I edit build.sbt file under engine's folder, and add scalaVersion := "2.11.8", re-run the build command(pio build --verbose), then everything build finished successfully.

like image 59
FelixHo Avatar answered Jan 04 '23 07:01

FelixHo