Body
Question
How do I update a package in a virtual conda environment from the Command Line?
Answer
1. From the Anaconda Prompt or Terminal command line (CLI) in an active virtual conda environment, enter "conda list". Installed packages for environment are listed. An example package is highlighted below and can be updated.
Example package: numpy 2.4.2

2. Enter "conda update <package_name>" to update the package.
Example package: numpy 2.4.2
a. Example package and package dependency is highlighted.
b. Enter "y" to proceed with the update.

3. Enter "conda list". Packages are listed including highlighted example updated package.
