0

I am building a system on Google App Engine which uses ideone module which is a pure module in egg file. When i try to import it, the GAE says they cannot access the module:

[Errno 13] file not accessible: 'C:\\Python27\\lib\\site-packages\\ideone-0.1.4-py2.7.egg'

I have tried to put the egg in the project root and include the __init__.py but it still does not work , any idea to solve it?

The ideone module has dependency to module suds-0.4-py2.7.egg

4

1 回答 1

1

从 egg 中提取 ideone 目录,并将其放在应用程序的主目录中,这样你就有了ideone/__init__.py. 然后就可以了import ideone

于 2012-05-06T04:25:17.510 回答