我需要創建一個運行使用pyodbc的python腳本的Azure webjob。
Azure編譯器無法識別pyodbc。
如何安裝或以某種方式引用它?如何安裝Azure webjob的python庫?
0
A
回答
1
通過安裝python擴展並使用擴展名運行腳本解決了這個問題。 https://prmadi.com/running-python-webjob-on-azure-app-services-using-non-default-python-version/
0
首先獲得工作PyODBC。要使用PyODBC,你應該在32位版本中編譯它。或者安裝Python 2.7或3.4(32位)並輸入命令「pip install pyodbc」
要在Azure WebJob中使用它,請將PyODBC.pyd文件放在作業的根目錄下,它應該可以工作。
相關問題
- 1. Azure webjob可以安裝Java JRE嗎?
- 2. Python中的Azure WebJob:如何訪問azure python包?
- 3. 無法安排azure webjob
- 4. 如何部署F#Azure WebJob?
- 5. Azure Web App WebJob未安裝節點程序包
- 6. 安裝Python庫
- 7. Python庫安裝
- 8. 安裝python的庫
- 9. 如何安裝Azure PowerShell 1.0?
- 10. 在Microsoft Azure WebJob中指定Python版本?
- 11. 安裝cube2sphere Python庫
- 12. 如何使用/安裝gps python庫
- 13. 如何離線安裝ruamel.yaml python庫?
- 14. 如何在heroku中安裝python庫
- 15. 如何手動安裝python庫
- 16. 如何在Visual Studio中安裝Python庫?
- 17. 如何在linux中安裝python庫?
- 18. Python PGU庫 - 我如何安裝它?
- 19. 如何在QGIS python中安裝pandas庫?
- 20. 如何在azure webjob中使用python虛擬環境
- 21. 如何從vNext Build運行Azure WebJob?
- 22. 如何在本地運行Azure WebJob
- 23. 如何保護azure webjob代碼執行?
- 24. Azure WebJob,如何停止通知?
- 25. 如何在Webjob中寫入Azure網站?
- 26. 從python調用webjob
- 27. 你應該如何安裝一個使用azure webapp作爲模板的Python庫?
- 28. Python受挫安裝庫不會安裝
- 29. 如何在Azure C#webapp上安裝SciPy?
- 30. Python的圖片庫安裝
我仍然收到錯誤消息。也嘗試過與64位。 –
我的理解只適用於32位。 –