Home  >  Article  >  Backend Development  >  What is anaconda?

What is anaconda?

青灯夜游
青灯夜游Original
2020-11-13 16:55:5158661browse

Anaconda refers to an open source Python distribution. It is a software for installing and managing python related packages. It comes with python, Jupyter Notebook, Spyder, conda and other tools, which is very useful.

What is anaconda?

What is Anaconda?

Anaconda is a software for installing and managing python-related packages. It also comes with python, Jupyter Notebook, Spyder, and the conda tool for managing packages, which is very useful.

Anaconda refers to an open source Python distribution, which includes more than 180 scientific packages such as conda and Python and their dependencies. [1] Because it contains a large number of scientific packages, the download file of Anaconda is relatively large (about 531 MB). If you only need certain packages, or need to save bandwidth or storage space, you can also use Miniconda, a smaller distribution (only Contains conda and Python).

Anaconda includes Conda, Python and a lot of installed tool packages, such as: numpy, pandas, etc.

conda is an open source package and environment manager that can be used in the same Install different versions of software packages and their dependencies on the machine, and be able to switch between different environments

How to install Anaconda?

It’s very simple:

1. Go to the official website https://www.anaconda.com/products/individual to download the installation file, which is less than 500M.

2. Double-click to install. You can refer to http://www.360doc.com/content/20/0511/06/29876786_911481951.shtml for specific details.

3. The installation is completed.

The difference between pip and conda

My simple understanding:

pip is a tool for managing python packages in the python environment

conda is a tool for managing python packages and other packages (such as C language packages) in the conda environment.

The two are different things and cannot be mixed. They install things in different places.

For more programming-related knowledge, please visit: Programming Learning Website! !

The above is the detailed content of What is anaconda?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn