Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to list package versions available with conda

Tags:

conda

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?

like image 253
pkumar0 Avatar asked Apr 05 '17 05:04

pkumar0


People also ask

How do I check my conda Environment list?

To list any variables you may have, run conda env config vars list . To set environment variables, run conda env config vars set my_var=value . Once you have set an environment variable, you have to reactivate your environment: conda activate test-env .


2 Answers

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

like image 171
The Student Soul Avatar answered Sep 22 '22 12:09

The Student Soul


You can just type "conda search" which will give you something like the following.

$ conda search  Fetching package metadata ......... affine                       2.0.0                    py27_0  defaults                              2.0.0                    py35_0  defaults                              2.0.0                    py36_0  defaults alabaster                    0.7.3                    py27_0  defaults                              0.7.3                    py34_0  defaults                              0.7.7                    py27_0  defaults                              0.7.7                    py34_0  defaults                              0.7.7                    py35_0  defaults                              0.7.9                    py27_0  defaults 
like image 20
nasica88 Avatar answered Sep 22 '22 12:09

nasica88