以下要求进行测试Azure耐用功能。
azure-functions
azure-functions-durable
datetime
requests==2.23.0
arcgis==1.8.0.post1
openpyxl==3.0.3
aiohttp==3.7.3
numpy
我正在使用 说例外:ModulenotFoundError:尽管该模块在需求文件中,但没有名为“ Arcgis”
的模块。
当我在
但是,当我检查我的 venv
时,没有 dist-info
文件夹,但仅:
arcgis-1.8.0.post1-py3.9.egg-info
。
有什么办法可以安装车轮?
I am testing an Azure Durable Function with the following requirements.txt
:
azure-functions
azure-functions-durable
datetime
requests==2.23.0
arcgis==1.8.0.post1
openpyxl==3.0.3
aiohttp==3.7.3
numpy
When I debug it using VS Code, the venv
is created adding all the relevant packages, but the Terminal complains saying Exception: ModuleNotFoundError: No module named 'arcgis'
despite this module being in the requirements file.
When I check the Troubleshooting Guide at https://aka.ms/functions-modulenotfound, one of the possible reasons they mention is:

However, when I check my venv
, there is no dist-info
folder, but only:
arcgis-1.8.0.post1-py3.9.egg-info
.
Is there a way I can install the wheel instead?
发布评论