a.) for example I want to know numpy, scipy, scikits and matplotlib are there in google app engine
b.) is there a way to install them in there(insane question)?
a.) for example I want to know numpy, scipy , scikits and matplotlib are
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
App Engine bundles most of the standard library, with a few exceptions (
marshalisn’t available,cPickleis an alias forpickle, and modules dealing with, e.g., sockets, won’t work), pluswebob,simplejson,django, andPyYAML. You can see a listing here.You can include any pure python libraries you want with your application. C extensions are not supported, which rules out numpy, scipy, and anything that depends on them (like the other 2 modules you mention.)
The Python 2.7 runtime, soon to go to trusted testers, will include numpy (along with PIL and lxml), but at the moment there’s been no indication that arbitrary C extensions will be allowed any time soon (although there is some hope that they might eventually be allowed via NaCL.)