Detailed Answer in Step-by-Step Solution:
Objective: Identify correct statements about installing Python libraries in OCI Data Science. Understand
Notebook Sessions: Run in a managed environment with specific permissions. Evaluate Options:
A: False—No root privileges; users operate as datascience with limited sudo. B: True—pip install from
PyPI works with internet access (e.g., NAT Gateway). C: False—Yum isn’t available; pip is the primary
tool as a normal user.
D: False—Misstated; youcaninstall non-preinstalled libraries—likely a typo (intended opposite). E:
True—Custom repos are supported with proper network config.
Correct Interpretation: Assuming D’s intent was “Youcaninstall…” (common exam error), B, D
(corrected), E are true.
Conclusion: B, D (corrected), E are correct.
OCI documentation states: “In notebook sessions, you can install Python libraries from PyPI (B) or
private repositories (E) using pip, but root privileges (A) are not granted—users operate asdatascience.”
Yum (C) isn’t supported, and D’s phrasing contradicts capability—corrected, it’s true you can install
beyond preinstalled. B, D (adjusted), E align with OCI’s flexibility.
: Oracle Cloud Infrastructure Data Science Documentation, "Installing Libraries in Notebook Sessions".