Install Anaconda3 and MiniConda3

The official version of MiniConda3 is an excellent Python environment management software. The latest version of MiniConda3 contains only conda and its dependencies If you would rather have conda with over 720 open source packages, install Anaconda. The official version of MiniConda3 is also an open source software package management system and environment management system, which can help users install multiple versions of software packages.

For the difference between pip, conda, anaconda and miniconda.

  • conda is a package and environment management tool that not only manages packages, but also isolates and manages environments of different python versions. Similar to nvm tools for managing nodejs environments.
  • Both anaconda and miniconda are distributions of conda. Only the included packages are different.
  • Anaconda contains more than 180 scientific packages such as conda and python and their dependencies, and has a relatively large body. But you may not use many things, so there is a mini version.
  • miniconda is the smallest conda installation environment, only conda+python+pip+zlib and some other commonly used packages, the body is very mini.
  • Pip is also called a package manager. The difference from conda is that pip only manages python packages, while conda can install packages in all languages. And conda can manage the python environment, but pip cannot.

Note: All operation commands of miniconda are completed in the command line, without GUI interface. And anaconda has an interface.

The address of MiniConda installation:

Miniconda — conda documentationhttps://docs.conda.io/en/latest/miniconda.html

Index of /icon-default.png?t=N6B9https://repo.anaconda.com/miniconda/

anaconda installation:

Official website:

Anaconda | The World’s Most Popular Data Science PlatformAnaconda is the birthplace of Python data science. We are a movement of data scientists, data-driven enterprises, and open source communities.https://www.anaconda.com/

Archive URL:

Index of /icon-default.png?t=N6B9https://repo.anaconda.com/archive/

Guess you like

Origin blog.csdn.net/wtl1992/article/details/131992619