Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to run scikit-learn on Google App Engine?

I'm trying to get scikit-learn to run on Google App Engine. Since scikit-learn isn't one of the default included libraries in GAE, I followed the instructions from this SO question but I couldn't get it to work. I suspected the problem has something to do with dependencies, so in desperation I found out scikit-learn's dependencies and added numpy and setuptolls inapp.yaml and scipy in the "libs" folder. Unsurprisingly, this didn't work either.

So, I have to ask, is what I'm attempting to do even possible or should I try using a different framework?

like image 566
Naurgul Avatar asked Mar 31 '14 13:03

Naurgul


2 Answers

scikit-learn is a complicated library with many 'c' based dependencies. Read on a similar post.

like image 126
Pooya Avatar answered Sep 28 '22 00:09

Pooya


The Python 3.7 Standard Runtime supports importation of any libraries you want to use, such as sklearn

like image 25
clickbait Avatar answered Sep 28 '22 01:09

clickbait