回答
只會上傳應用程序文件夾中的內容。
所以你只需要把相關文件夾放到你的應用程序引擎項目文件夾中。就像你會導入你自己的模塊一樣。然後它將可用於您的應用程序引擎應用程序。
因此,安裝你想安裝的東西,把它的安裝目錄複製到你的應用程序引擎應用程序目錄中。這是通用的,它不是特定於您所鏈接的軟件包。
這是一個類似的問題:How do I manage third-party Python libraries with Google App Engine? (virtualenv? pip?)
需要注意的是,如果它不是純Python(即具有C組分),它不會在App Engine上工作。
GAE紙條: 「我如何管理第三方Python庫與谷歌應用程序引擎(?的virtualenv PIP)」
You can use any pure Python third party libraries in your Google App Engine application. In order to use a third party library, simply include the files in your application's directory, and they will be uploaded with your application when you deploy it to our system. You can import the files as you would any other Python files with your application.
https://developers.google.com/appengine/kb/commontasks#thirdparty
- 1. 將Python蛋模塊導入Google App Engine
- 2. Google App Engine - 一個模塊不部署
- 3. Python和Google App Engine:如何導入自定義模塊?
- 4. 如何在Google App Engine中導入模塊?
- 5. 無法將庫導入Google App Engine項目
- 6. 我應該如何在Google App Engine項目中導入django.middleware類?
- 7. 沒有模塊的App Engine App Engine中
- 8. 導入用於Google App Engine的GData庫
- 9. 將庫添加到Google App Engine項目
- 10. 上傳Google App Engine項目
- 11. 在Google App Engine項目中安裝icalendar(或其他Python模塊)
- 12. 下載Google App Engine項目
- 13. sbt多模塊項目從另一個模塊導入特徵
- 14. Google App Engine/GWT插件可以使用多模塊項目嗎?
- 15. 如何從Python Google App Engine中的模塊訪問自營庫?
- 16. 將Python模塊添加到Google App Engine項目
- 17. 在Google App Engine中導入C python模塊
- 18. Google App Engine - 僅限產品 - 模塊導入錯誤
- 19. 將現有Google App Engine模塊導入到Android Studio
- 20. 如何在導入同一子目錄中的另一個模塊的子目錄中導入模塊?
- 21. TypeScript從另一個項目/模塊導入類?
- 22. 如何將庫添加到我的Google App Engine項目中?
- 23. 如何在App Engine中動態導入模塊?
- 24. 在PyCharm Google App Engine項目中導入psutil時出錯
- 25. 運行Google App Engine測試項目時導入錯誤
- 26. Google App Engine找不到gdata模塊
- 27. 適合Google App Engine的項目?
- 28. Django on Google App Engine-如何導入/使用第三方庫?
- 29. Google App Engine項目之間的安全
- 30. Google App Engine - 導入我自己的源代碼模塊(多個文件)
我想嘗試以下,但沒有奏效。我不知道什麼錯誤?你是否一步一步地解釋我。 – 1407522
安裝你的模塊。將它的安裝文件夾複製到你的應用程序引擎文件夾中(或者使用更復雜的系統,如果首選simlink等),然後你可以從你的應用程序調用它。我不知道我能做到多少「一步一步」。 –
-proj -rpy2 < - Library/Python/2.7/site-packages/rpy2-2.3.1-py2.7-macosx-10.8-intel.egg的拷貝 -__init__.py -robjects -__init__.py -robject.py 的app.yaml - 網址:rpy2 static_dir:rpy2 proj.py 進口robjects.robjects 「導入錯誤:沒有模塊名爲robjects.robject」 – 1407522