DP-100 · Question #497
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might h
The correct answer is A. Yes. Creating a conda or Python environment is the required prerequisite before registering a new Jupyter kernel in an Azure ML compute instance terminal.
Question
Options
- AYes
- BNo
How the community answered
(28 responses)- A93% (26)
- B7% (2)
Why each option
Creating a conda or Python environment is the required prerequisite before registering a new Jupyter kernel in an Azure ML compute instance terminal.
A new Jupyter kernel must be backed by a specific Python environment; without first creating that environment and installing ipykernel into it, there is nothing to register as a kernel. Creating the environment provides the interpreter and packages the kernel will expose, after which the kernel can be registered using 'python -m ipykernel install' from within that environment.
Answering No is incorrect because creating an environment is the actual prerequisite step before a new Jupyter kernel can be added and made accessible in the terminal session.
Concept tested: Azure ML compute instance Jupyter kernel prerequisites
Source: https://learn.microsoft.com/en-us/azure/machine-learning/how-to-access-terminal
Topics
Community Discussion
No community discussion yet for this question.