Thanks for the question.
The error you’re seeing usually happens when the AutoML deployment tries to build an environment with package versions that cannot be resolved. In your case, the logs show that the environment is trying to use a release-candidate Python version (python-3.14.0rc1), which causes dependency conflicts during the image-build step.
AutoML often auto-generates a Conda environment, but sometimes the selected Python version or library versions are incompatible. When that happens, the deployment fails before the model is even packaged. This is a common issue with computer-vision models because they depend on several heavy libraries.
A good next step is to download the generated conda file from your AutoML run and replace the Python version with a stable one (for example Python 3.8 or 3.10). After updating the file, you can redeploy the model using a custom environment. This typically resolves the dependency conflict.
You can also test the environment locally or manually rebuild the environment in Azure ML by specifying your own conda YAML. Many users find that creating a simple custom environment avoids these “unsatisfiable dependency” errors completely.
If the issue continues even after updating the environment, let me know or if there are any remaining questions or additional details, I can help with, I’ll be glad to provide further clarification or guidance.
Thankyou!