We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ecbfd6 commit d2a423dCopy full SHA for d2a423d
how-to-use-azureml/training/using-environments/using-environments.ipynb
@@ -129,7 +129,8 @@
129
"for env in envs:\n",
130
" if env.startswith(\"AzureML\"):\n",
131
" print(\"Name\",env)\n",
132
- " print(\"packages\", envs[env].python.conda_dependencies.serialize_to_string())"
+ " if envs[env].python.conda_dependencies is not None:\n",
133
+ " print(\"packages\", envs[env].python.conda_dependencies.serialize_to_string())"
134
]
135
},
136
{
0 commit comments