How to list package versions available with conda

pkumar0 picture pkumar0 · Apr 5, 2017 · Viewed 68.7k times · Source

IS there a way to see what package versions are available with conda? I am getting an error with jupyter but it was working before. Something like yolk?

Answer

The Student Soul picture The Student Soul · Nov 29, 2017

To search for a specific package, use: conda search -f <package_name>. For example, based on the question, to search all versions for "jupyter" package, you'll do: conda search -f jupyter. This will only return information about packages named "jupyter" exactly.

Source: https://docs.conda.io/projects/conda/en/latest/commands/search.html