How is Anaconda related to Python?

后端 未结 3 1836
Happy的楠姐
Happy的楠姐 2021-01-30 00:02

I am a beginner and I want to learn computer programming. So, for now, I have started learning Python by myself with some knowledge about programming in C and Fortran.

N

3条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-30 00:17

    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.

提交回复
热议问题