Quiz Question 1 of 5
Imagine you are working on a data science project that requires a specific version of the pandas
library due to compatibility issues with other libraries. However, you are also required to install an additional user-created package for visualizing data that is not available in the default Anaconda repository. How would you efficiently manage these dependencies?
Choose the correct answer below:
-
A
Use only
pip
to manage both installations to ensure consistency across all packages. -
B
Install the specific
pandas
version usingconda install pandas=0.23
and then install the user-created package usingpip install
. -
C
Install the specific
pandas
version usingpip install pandas=0.23
and then install the user-created package usingconda install -c conda-forge
. -
D
Install the specific
pandas
version usingconda install pandas=0.23
and then install the user-created package usingconda install -c conda-forge
.