conda Package Management Utility

From GM-RKB
Jump to navigation Jump to search

A conda Package Management Utility is a package management utility for an Anaconda distribution.



References

2020

  • (Wikipedia, 2020) ⇒ https://en.wikipedia.org/wiki/Conda_(package_manager) Retrieved:2020-8-25.
    • Conda is an open-source,[1] cross-platform,[2] language-agnostic package manager and environment management system. It was originally developed to solve difficult package management challenges faced by Python data scientists, and today is a popular package manager for Python and R. [3] At first part of Anaconda Python distribution developed by Anaconda Inc., it ended up being useful on its own and for things other than Python, so it was spun out as a separate package, released under the BSD license. The conda package and environment manager is included in all versions of Anaconda, Miniconda, and Anaconda Repository. Conda allows users to easily install different versions of binary software packages and any required libraries appropriate for their computing platform. Also, it allows users to switch between package versions and download and install updates from a software repository. Conda is written in the Python programming language, but can manage projects containing code written in any language (e.g., R), including multi-language projects. Conda can install Python, while similar Python-based cross-platform package managers (such as wheel or pip) cannot. The big difference between conda and the pip package manager is in how package dependencies are managed, which is a significant challenge for Python data science and the reason conda was created. Pip installs all Python package dependencies required, whether or not those conflict with other packages previously installed. So a working installation of, for example, Google TensorFlow can suddenly stop working when a user pip-installs a new package that needs a different version of the NumPy library. More insidiously, everything might still appear to work, but the user gets different results, or is unable to reproduce the same results elsewhere because the user did not pip-install in the same order. Conda analyzes the user's current environment, everything that has been installed, any version limitations that the user specifies (e.g. if the user only wants tensorflow >= 2.0) and figures out how to install compatible dependencies. Otherwise, it will tell the user that what he or she wants can't be done. Pip, by contrast, will just install the package the user specified and any dependencies, even if that breaks other packages. A popular conda channel for bioinformatics software is Bioconda, which provides multiple software distributions for computational biology. [4]
  1. Cite error: Invalid <ref> tag; no text was provided for refs named networkworld-Jackson-DARPA
  2. Bioconda official website.

2017