How to list package versions available with conda

前端 未结 6 1382
花落未央
花落未央 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:36

    If you know the name of the package you want to install search for all available versions of it. eg. for package pandas you will do the following

    conda search pandas
    

    and then install the version you want using

    conda install pandas=1.0.2
    

提交回复
热议问题