Answers for "anaconda see all packages"

Lua
3

how do i see the list of packages installed on anaconda

conda list
Posted by: Guest on July-26-2020
0

Search for anaconda packages

# To see if a specific package, such as SciPy, is available for installation:
conda search scipy

# To see if a specific package, such as SciPy, is available for installation from Anaconda.org:
conda search --override-channels --channel defaults scipy

# To see if a specific package, such as iminuit, exists in a specific channel, such as http://conda.anaconda.org/mutirri, and is available for installation:
conda search --override-channels --channel http://conda.anaconda.org/mutirri iminuit
Posted by: Guest on May-05-2021

Code answers related to "anaconda see all packages"

Browse Popular Code Answers by Language