6

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?

Community
  • 1
  • 1
Naurgul
  • 231
  • 2
  • 9

2 Answers2

3

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

Community
  • 1
  • 1
Pooya
  • 399
  • 2
  • 13
1

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

clickbait
  • 2,818
  • 1
  • 25
  • 61