Naurgul
Naurgul

Reputation: 231

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?

Upvotes: 6

Views: 2293

Answers (2)

Pooya
Pooya

Reputation: 399

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

Upvotes: 3

Related Questions