For Python, what is the difference between pip x conda x anaconda

0

I'm learning python and saw that tutorials always appear for the tools:

  • pip
  • conda
  • anaconda

And I was in doubt what the practical difference between them?

    
asked by anonymous 01.05.2018 / 17:52

1 answer

1

Pip is a package manager for the Python language.

Conda is a package manager for several languages.

Anaconda is a set of data science modules with python.

    
12.05.2018 / 22:31