Quiz Question 1 of 5
You are tasked with setting up a Python environment for a project that includes running shell commands, mathematical operations, and requires high control over data collection structures. You also need to install a third-party library not available in Anaconda repositories. Which steps would you take to set up your environment efficiently?
Choose the correct answer below:
-
A
Use
conda install
to installos, sys, math, and collections
, and then usepip install
for the third-party library. -
B
Use
conda install
to installos, sys, itertools
, andrandom
, and then usepip install
for the third-party library. -
C
Use
conda install
to installmath, cmath, collections
, and then usepip install
for the third-party library. -
D
Use
conda install
to installos, math, collections
, and then usepip install
for the third-party library.