How to list package versions available with conda

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

    As an addendum, you can use the output of conda search to fine-tune the version of the package you need installed. E.g. in the list from the 'nasica88', there are three albaster 0.7.7 versions available with with different python versions. If you require e.g. albaster 0.7.7 with python 3.4, you install it as following:

    $> conda install albaster=0.7.7=py34_0
    

    So, the second = sign is your friend here.

提交回复
热议问题