2

I need to install anaconda on my new mac.

There are two options. One using brew (brew install --cask anaconda) and the other via the official anaconda installer

Why should I use which?
I read about problems using brew and conda e.g., here So why not always using the official installer? Why is there the brew option?

Thanks

Florida Man
  • 2,021
  • 3
  • 25
  • 43

1 Answers1

4

Since Home brew is a package manager which automates each and everything to get your required software being installed through it including not only the dependencies but also automatically getting the newer versions. Moreover it mainly becomes helpful when we need to uninstall such software which have dependent libraries installed, it helps in removing them safely also.

  • Thanks for the insight. So you basically suggest to always use brew instead of the original source for mac? – Florida Man Nov 04 '21 at 09:58
  • I suggest to use it if whatever you are trying to install or uninstall have some dependencies. Actually it's about the developer's perceptive, command line is considered to be more efficient. Otherwise original source works perfectly too. – Zain Basharat Ali Nov 05 '21 at 10:08