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?
To search for a specific package, use: conda search -f
. 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