我正在尝试使用VSCode在本地运行python azure函数,但它几乎总是立即关闭。
我已经按照本教程创建了最简单的示例函数,但是我认为我的机器上的某些配置错误。
启动该功能后几乎立即看到以下内容
[9/1/2019 4:52:07 PM] Found the following functions:
[9/1/2019 4:52:07 PM] Host.Functions.HttpTriggerTest
[9/1/2019 4:52:07 PM]
[9/1/2019 4:52:07 PM] Host initialized (573ms)
[9/1/2019 4:52:07 PM] Host started (590ms)
[9/1/2019 4:52:07 PM] Job host started
[9/1/2019 4:52:07 PM] python: can't open file 'C:\Users\First': [Errno 2] No such file or directory
[9/1/2019 4:52:07 PM] python: can't open file 'C:\Users\First': [Errno 2] No such file or directory
[9/1/2019 4:52:07 PM] Starting language worker process:python C:\Users\First Last\.vscode\extensions\ms-python.python-2019.3.6558\pythonFiles\ptvsd_launcher.py --default --host 127.0.0.1 --port 9091 --wait "C:\Users\First
Last\AppData\Roaming\npm\node_modules\azure-functions-core-tools\bin\workers\python\worker.py" --host 127.0.0.1 --port 64975 --workerId e9dc059f-128f-4e11-8363-797b4f1eeb1b --requestId c857107a-6b99-4d5a-9b71-d27827bfcad3 --grpcMaxMessageLength 134217728
[9/1/2019 4:52:07 PM] python process with Id=20920 started
Hosting environment: Production
Content root path: C:\file_location\Dev\PythonDev\MyAzureFunctions
Now listening on: http://0.0.0.0:7071
Application started. Press Ctrl+C to shut down.
Http Functions:
HttpTriggerTest: [GET,POST] http://localhost:7071/api/HttpTriggerTest
[9/1/2019 4:52:07 PM] python: can't open file 'C:\Users\First': [Errno 2] No such file or directory
[9/1/2019 4:52:07 PM] Exceeded language worker restart retry count for runtime:python. Shutting down Functions Host
[9/1/2019 4:52:07 PM] Stopping host...
[9/1/2019 4:52:07 PM] Stopping JobHost
[9/1/2019 4:52:07 PM] Job host stopped
[9/1/2019 4:52:07 PM] Host shutdown completed.
Application is shutting down...
注意:错误消息指出文件C:\ Users \ First无法打开,因为它不存在。确实不存在。确实存在一个名为“ C:\ Users \ First Last”的文件夹。也许我的Windows用户名中的空格引起了问题?
答案 0 :(得分:0)
这是早期python
版本的问题。
您正在使用什么版本的python?
如果使用的内容少于3.6.8
,则必须卸载旧版本并从here下载最新版本
您正在使用azure-functions-core-tools
的哪个版本?
即使在安装了最新版本的python之后,如果您的问题仍未解决->也请尝试将其卸载,然后reboot
您的计算机->然后执行npm install -g azure-functions-core-tools
即使此方法无效,也暂时禁用 Windows Defender实时扫描。
答案 1 :(得分:0)
实际上是因为您将目录放在单引号''
中,所以需要将它们放在双引号""
中。
即"C:\Program Files\Python 3.4\python.exe"
如果这不是关键问题,请分享一些引起问题的代码。