Azure ML Endpoint Deployment Error (No matching distribution found for en-core-web-sm==2.1.0)
Lucas Guo
20
Reputation points
I have trained a model with Automated ML. When deploying the model to an endpoint, I came across with this issue:
ResourceOperationFailure: ResourceNotReady: User container has crashed or terminated. Please see troubleshooting guide, available here: https://aka.ms/oe-tsg#error-resourcenotready
When checking the deployment log I got the following error:
alling pip dependencies: ...working... Ran pip subprocess with arguments:['/opt/miniconda/envs/userenv/bin/python', '-m', 'pip', 'install', '-U', '-r', '/tmp/condaenv.n3tlurp8.requirements.txt']Pip subprocess output:Collecting adal==1.2.7 Downloading adal-1.2.7-py2.py3-none-any.whl (55 kB)Pip subprocess error:ERROR: Ignored the following versions that require a different python version: 0.7 Requires-Python >=3.6, <3.7; 0.8 Requires-Python >=3.6, <3.7; 1.19.0 Requires-Python >=3.5,<3.8; 1.20.0 Requires-Python >=3.5,<3.8; 1.20.0.post1 Requires-Python >=3.5,<3.8; 1.21.0 Requires-Python >=3.5,<3.8; 1.21.0.post1 Requires-Python >=3.5,<3.8; 1.22.0 Requires-Python >=3.5,<3.8; 1.22.0.post1 Requires-Python >=3.5,<3.8; 1.22.0.post2 Requires-Python >=3.5,<3.8; 1.22.0.post2 Requires-Python >=3.6,<3.8; 1.23.0 Requires-Python >=3.5,<3.8; 1.23.0.post1 Requires-Python >=3.5,<3.8; 1.24.0 Requires-Python >=3.5,<3.8; 1.25.0 Requires-Python >=3.5,<3.8; 1.25.0.post1 Requires-Python >=3.5,<3.8; 1.26.0 Requires-Python >=3.5,<3.8; 1.26.0.post1 Requires-Python >=3.5,<3.8; 1.27.0 Requires-Python >=3.5,<3.8; 1.27.0.post1 Requires-Python >=3.5,<3.8; 1.27.0.post2 Requires-Python >=3.5,<3.8; 1.28.0 Requires-Python >=3.5,<3.8; 1.28.0.post1 Requires-Python >=3.5,<3.8; 1.28.0.post2 Requires-Python >=3.5,<3.8; 1.29.0 Requires-Python >=3.6,<3.8; 1.29.0.post1 Requires-Python >=3.6,<3.8; 1.30.0 Requires-Python >=3.6,<3.8; 1.31.0 Requires-Python >=3.6,<3.8; 1.32.0 Requires-Python >=3.6,<3.8; 1.33.0 Requires-Python >=3.6,<3.8; 1.33.1 Requires-Python >=3.6,<3.8; 1.33.1.post1 Requires-Python >=3.6,<3.8; 1.34.0 Requires-Python >=3.6,<3.8; 1.34.0.post1 Requires-Python >=3.6,<3.8; 1.34.1 Requires-Python >=3.6,<3.8; 1.34.1.post1 Requires-Python >=3.6,<3.8; 1.35.0 Requires-Python >=3.6,<3.8; 1.35.1 Requires-Python >=3.6,<3.8; 1.36.0 Requires-Python >=3.6,<3.8; 1.36.1 Requires-Python >=3.6,<3.8; 1.37.0 Requires-Python >=3.6,<3.8; 1.38.0 Requires-Python >=3.6,<3.8
ERROR: Could not find a version that satisfies the requirement en-core-web-sm==2.1.0 (from versions: none)
ERROR: No matching distribution found for en-core-web-sm==2.1.0
I'm wondering if anyone had the same issue? How can I change the requirements.txt in an automated ML model? Thanks.
Sign in to answer