How to list package versions available with conda

前端 未结 6 1303
花落未央
花落未央 2021-02-03 16:59

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?

6条回答
  •  温柔的废话
    2021-02-03 17:25

    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

提交回复
热议问题