Quiz Question 1 of 5
When activating a Python environment using conda activate ds
, what potential issues could arise if this command is used on a machine where the ds
environment does not exist, and how can this be addressed?
Choose the correct answer below:
-
A
The command will fail with an error; it can be addressed by checking the available environments first using
conda env list
. -
B
The command will create a new empty environment; it can be addressed by installing the required packages afterward.
-
C
The command will activate the base environment instead; it can be addressed by creating the
ds
environment beforehand. -
D
The command will switch to the base environment; it can be addressed by running
conda init
first.