How is Anaconda related to Python? How is Anaconda related to Python? python-3.x python-3.x

How is Anaconda related to Python?


Anaconda is a python and R distribution. It aims to provide everything you need (Python-wise) for data science "out of the box".

It includes:

  • The core Python language
  • 100+ Python "packages" (libraries)
  • Spyder (IDE/editor - like PyCharm) and Jupyter
  • conda, Anaconda's own package manager, used for updating Anaconda and packages

Your course may have recommended it as it comes with these extras but if you don't need them and are getting on fine with vanilla Python that's OK too.

Learn more: https://www.anaconda.com/distribution/


Anaconda is a Python distribution that makes it easy to install Python plus a number of its most often used 3rd party libraries in a flexible way on a Windows or Linux machine.

My experiences with it are very positive, both on Windows and Linux. It is quite complete and avoids problems in building libraries that you need from source code, that frequently plague one by one installations of those libraries by tools like pip.

By the way: It's very wise to start with 3.5 or 3.6 since 2.7 is approaching the end of its lifecycle, though many applications still depend on it.

As for tutorials: Pythons own docs are quite suitable for learning the language.

https://docs.python.org/3/tutorial/


Anaconda is a Python-based data processing and scientific computing platform. It has built in many very useful third-party libraries. Installing Anaconda is equivalent to automatically installing Python and some commonly used libraries such as Numpy, Pandas, Scrip, and Matplotlib, so it makes the installation so much easier than regular Python installation. If you don't install Anaconda, but instead only install Python from python.org, you also need to use pip to install various libraries one by one. It is painful and you need to consider compatibility, thus it is highly recommended to directly install Anaconda.