python 使用conda环境在VS代码中部署Azure Functions

ej83mcc0  于 2024-01-05  发布在  Python
关注(0)|答案(2)|浏览(134)

我在尝试本地运行我的Azure函数时,在VS代码中的Python设置有一点不一致的问题。我试图避免使用VS代码自动为Azure函数项目设置的“venv”环境,而是使用我预先创建的conda环境,并安装了所有要求。只是为了澄清,这是关于本地部署而不是Azure门户。

myfunc__init__.py

  1. import json
  2. import logging
  3. import time
  4. import azure.functions as func
  5. import pandas as pd # Import Error happens here!
  6. def main(req: func.HttpRequest) -> func.HttpResponse:
  7. ...

字符串

.vscode\Settings.json

  1. {
  2. // Local Machine Conda VENV (Define CONDAPATH in Windows Environment)
  3. "python.condaPath": "%CONDAPATH%",
  4. "python.pythonPath": "%CONDAPATH%\\envs\\azure\\python.exe",
  5. "azureFunctions.pythonVenv": "%CONDAPATH%\\envs\\azure",
  6. // Created Local VENV by VS Code (pythonPath is difference for MAC vs Windows)
  7. //"azureFunctions.pythonVenv": ".venv",
  8. // Azure Function Stuff
  9. "azureFunctions.deploySubpath": ".",
  10. "azureFunctions.scmDoBuildDuringDeployment": true,
  11. "azureFunctions.projectLanguage": "Python",
  12. "azureFunctions.projectRuntime": "~2",
  13. "azureFunctions.preDeployTask": "func: pack --build-native-deps",
  14. "debug.internalConsoleOptions": "neverOpen",
  15. }

**注意:**如果我用conda的实际绝对路径替换%CONDAPATH%,问题仍然存在。

在需要时,launch.json配置如下:

  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Linux_PyFunc",
  6. "type": "python",
  7. "request": "attach",
  8. "port": 9091,
  9. "preLaunchTask": "func: host start"
  10. }
  11. ]
  12. }


当VS Code运行函数时,部署完成,没有问题,并生成本地链接。一旦我通过Postman调用函数,返回的是HTTP 500状态,这是由于无法import pandas与错误模块未找到。
如果我在settings.json中设置"azureFunctions.pythonVenv": ".venv",函数将在本地部署,一旦被触发/调用,它将返回HTTP 200状态和正确的响应。
所以,这给我带来了一个问题,如果VS代码支持Azure函数部署的conda环境,如果是这样,我在这里错过了什么?

a2mppw5e

a2mppw5e1#

这是我所做的,以获得康达环境,而不是venv
查看settings.json文件。因为我已经安装了python扩展,并且已经为这个项目配置了解释器,所以我有一个名为python.pythonPath的设置。我想使用这个python而不是venv,所以我注解掉了venv设置。

  1. {
  2. "azureFunctions.deploySubpath": "./functions/",
  3. "azureFunctions.scmDoBuildDuringDeployment": true,
  4. // "azureFunctions.pythonVenv": "../.venv", // Ignore not going to use
  5. "azureFunctions.projectLanguage": "Python",
  6. ...
  7. "python.pythonPath": "C:\\path\\to\\Anaconda3\\envs\\myenviron\\python.exe",
  8. ...
  9. }

字符串
接下来编辑tasks.json。注意有一个pipInstall任务。我将widows命令更改为使用在设置中定义的python.pythonPath
旧值类似于"command": "${config:azureFunctions.pythonVenv}/bin/python -m pip install...,新值为"command": "${config:python.pythonPath} -m pip install...

  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. ...
  5. {
  6. "label": "pipInstall",
  7. "type": "shell",
  8. "osx": {
  9. "command": "${config:python.pythonPath} -m pip install -r ${config:azureFunctions.deploySubpath}/requirements.txt"
  10. },
  11. "windows": {
  12. "command": "${config:python.pythonPath} -m pip install -r ${config:azureFunctions.deploySubpath}\\requirements.txt"
  13. },
  14. "linux": {
  15. "command": "${config:python.pythonPath} -m pip install -r ${config:azureFunctions.deploySubpath}/requirements.txt"
  16. },
  17. "problemMatcher": []
  18. }
  19. ]
  20. }

展开查看全部
sqougxex

sqougxex2#

对于任何人面临类似的问题,我已经结束了以下设置感谢布里格提供的答案:

.vscode\settings.json

  1. {
  2. // python.pythonPath is machine-dependent, AVOIDING a set value here
  3. // Local Machine Conda VENV (Define CONDAPATH in Windows Environment)
  4. "python.condaPath": "${env:CONDAPATH}/Library/bin/conda.bat",
  5. "python.pythonPath": "${env:CONDAPATH}/envs/azure/python.exe",
  6. // Needs `pyvenv.cfg` present in venv path?
  7. // "azureFunctions.pythonVenv": "${env:CONDAPATH}/envs/azure",
  8. // Created Local VENV by VS Code (pythonPath is difference for MAC vs Windows)
  9. "azureFunctions.pythonVenv": ".venv",
  10. // Windows pythonPath
  11. // "python.pythonPath": "src/.venv/Scripts/python.exe",
  12. // MAC pythonPath
  13. // "python.pythonPath": "src/.venv/bin/python",
  14. // Azure Function Stuff
  15. "azureFunctions.deploySubpath": "src",
  16. "azureFunctions.scmDoBuildDuringDeployment": true,
  17. "azureFunctions.projectLanguage": "Python",
  18. "azureFunctions.projectRuntime": "~3",
  19. "azureFunctions.preDeployTask": "func: pack --build-native-deps",
  20. "debug.internalConsoleOptions": "neverOpen",
  21. }

字符串

.vscode\tasks.json

  1. {
  2. "tasks": [
  3. {
  4. "type": "func",
  5. "command": "host start",
  6. "problemMatcher": "$func-watch",
  7. "isBackground": true,
  8. "dependsOn": "pipInstall",
  9. "options": {
  10. "cwd": "${workspaceFolder}/src"
  11. }
  12. },
  13. {
  14. "label": "pipInstall",
  15. "type": "shell",
  16. "osx": {
  17. "command": "${config:azureFunctions.pythonVenv}/bin/python -m pip install -r requirements.txt"
  18. },
  19. "windows": {
  20. "command": "${config:azureFunctions.pythonVenv}\\Scripts\\python -m pip install -r requirements.txt"
  21. },
  22. "linux": {
  23. "command": "${config:azureFunctions.pythonVenv}/bin/python -m pip install -r requirements.txt"
  24. },
  25. "problemMatcher": [],
  26. "options": {
  27. "cwd": "${workspaceFolder}/src"
  28. }
  29. }
  30. ]
  31. }

展开查看全部

相关问题