1

I'm trying to search for a specific package version using Conda. From the docs:

Search for a specific version of a package:

conda search 'numpy>=1.12'

Returns the error:

PackagesNotFoundError: The following packages are not available from current channels:

 - 'numpy

It looks to be an issue with single quotes ' - I have tried:

conda search numpy >= 1.12
* No output *

What is the correct syntax for conda search?

FlyingTeller
  • 17,638
  • 3
  • 38
  • 53
Jelphy
  • 961
  • 2
  • 11
  • 28

1 Answers1

1

Single quotes don't work in every terminal, specifically not under windows. try using double quotes:

conda search "numpy>=1.12"
FlyingTeller
  • 17,638
  • 3
  • 38
  • 53