Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check anaconda's version on mac?

I installed anaconda a while ago, and I want to know if I need to re-install it to catch up the new updates.

However, i don't know how to check the current version of anaconda

In command line, I type anaconda -V it gives

anaconda Command line client (version 1.2.2)

For anaconda -v it returns

anaconda: error: too few arguments
like image 516
cqcn1991 Avatar asked May 09 '16 08:05

cqcn1991


People also ask

How do I know if Anaconda is installed?

To test your installation, in your Terminal window or Anaconda Prompt, run the command conda list . For a successful installation, a list of installed packages appears.

Is there Anaconda for Mac?

This tutorial will demonstrate how you can install Anaconda, a powerful package manager, on your Mac. Anaconda is a package manager, an environment manager, and Python distribution that contains a collection of many open source packages.


1 Answers

Try conda -V

Make sure the "V" is uppercase.

like image 196
Pareesa Avatar answered Oct 25 '22 15:10

Pareesa