All Projects → conda → Conda

conda / Conda

Licence: other
OS-agnostic, system-level binary package manager and ecosystem

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects
Batchfile
5799 projects
powershell
5483 projects
Xonsh
10 projects
Makefile
30231 projects

Projects that are alternatives of or similar to Conda

vscode-micromamba
A VSCode extension to generate development environments using micromamba and conda-forge package repository
Stars: ✭ 16 (-99.64%)
Mutual labels:  conda
covector
Transparent and flexible change management for publishing packages and assets.
Stars: ✭ 28 (-99.37%)
Mutual labels:  package-management
basalt
The rock-solid Bash package manager
Stars: ✭ 16 (-99.64%)
Mutual labels:  package-management
pyrpipe
Reproducible bioinformatics pipelines in python. Import any Unix tool/command in python.
Stars: ✭ 53 (-98.81%)
Mutual labels:  conda
cpm
🌵 A wrapper for package managers to make them consistent for those of us who are lazy.
Stars: ✭ 52 (-98.83%)
Mutual labels:  package-management
pc guidelines
Guidelines for using IvLabs PC. General instructions for maintaining and using any PC/laptop while using Ubuntu for Robotics/DL/RL research.
Stars: ✭ 23 (-99.48%)
Mutual labels:  conda
code-compass
a contextual search engine for software packages built on import2vec embeddings (https://www.code-compass.com)
Stars: ✭ 33 (-99.26%)
Mutual labels:  package-management
Conan Center Index
Recipes for the ConanCenter repository
Stars: ✭ 310 (-93.01%)
Mutual labels:  package-management
conda-lock
Lightweight lockfile for conda environments
Stars: ✭ 184 (-95.85%)
Mutual labels:  conda
docker-alpine-miniconda3
The smallest Docker image with Miniconda3 (Python 3.7) (~143MB)
Stars: ✭ 94 (-97.88%)
Mutual labels:  conda
pyenvdiff-lib
Python environment comparison tool
Stars: ✭ 23 (-99.48%)
Mutual labels:  conda
pytorch-aarch64
PyTorch wheels (whl) & conda for aarch64 / ARMv8 / ARM64
Stars: ✭ 137 (-96.91%)
Mutual labels:  conda
conda-env-builder
Build and maintain multiple custom conda environments all in once place.
Stars: ✭ 18 (-99.59%)
Mutual labels:  conda
tibanna
Tibanna helps you run your genomic pipelines on Amazon cloud (AWS). It is used by the 4DN DCIC (4D Nucleome Data Coordination and Integration Center) to process data. Tibanna supports CWL/WDL (w/ docker), Snakemake (w/ conda) and custom Docker/shell command.
Stars: ✭ 61 (-98.63%)
Mutual labels:  conda
Pacote
programmatic npm package and metadata downloader (moved!)
Stars: ✭ 281 (-93.67%)
Mutual labels:  package-management
FreeCAD Conda
conda recipes for freecad and dependencies of freecad
Stars: ✭ 35 (-99.21%)
Mutual labels:  conda
docker-containers
Docker images for fastai
Stars: ✭ 143 (-96.78%)
Mutual labels:  conda
Retool
Vendoring for executables written in Go
Stars: ✭ 403 (-90.92%)
Mutual labels:  package-management
Modulation
Modulation - explicit dependency management for Ruby
Stars: ✭ 306 (-93.11%)
Mutual labels:  package-management
repogen
Easy-to-use signed APT repository generator with a web-based package browser.
Stars: ✭ 34 (-99.23%)
Mutual labels:  package-management

Conda Logo


CI Tests (GitHub Actions) CI Images (GitHub Actions) Codecov Status latest release version

Conda is a cross-platform, language-agnostic binary package manager. It is the package manager used by Anaconda installations, but it may be used for other systems as well. Conda makes environments first-class citizens, making it easy to create independent environments even for C libraries. Conda is written entirely in Python, and is BSD licensed open source.

Conda is enhanced by organizations, tools, and repositories created and managed by the amazing members of the conda community. Some of them can be found here.

Installation

Conda is a part of the Anaconda Distribution. Use Miniconda to bootstrap a minimal installation that only includes conda and its dependencies.

Getting Started

If you install Anaconda, you will already have hundreds of packages installed. You can see what packages are installed by running

$ conda list

to see all the packages that are available, use

$ conda search

and to install a package, use

$ conda install <package-name>

The real power of conda comes from its ability to manage environments. In conda, an environment can be thought of as a completely separate installation. Conda installs packages into environments efficiently using hard links by default when it is possible, so environments are space efficient, and take seconds to create.

The default environment, which conda itself is installed into is called base. To create another environment, use the conda create command. For instance, to create an environment with the IPython notebook and NumPy 1.6, which is older than the version that comes with Anaconda by default, you would run

$ conda create -n numpy16 ipython-notebook numpy=1.6

This creates an environment called numpy16 with the latest version of the IPython notebook, NumPy 1.6, and their dependencies.

We can now activate this environment, use

# On Linux and Mac OS X
$ source activate numpy16

# On Windows
> activate numpy16

This puts the bin directory of the numpy16 environment in the front of the PATH, and sets it as the default environment for all subsequent conda commands.

To go back to the base environment, use

# On Linux and Mac OS X
$ source deactivate

# On Windows
> deactivate

Building Your Own Packages

You can easily build your own packages for conda, and upload them to anaconda.org, a free service for hosting packages for conda, as well as other package managers. To build a package, create a recipe. Package building documentation is available here. See https://github.com/AnacondaRecipes for the recipes that make up the Anaconda Distribution and defaults channel. Conda-forge and Bioconda are community-driven conda-based distributions.

To upload to anaconda.org, create an account. Then, install the anaconda-client and login

$ conda install anaconda-client
$ anaconda login

Then, after you build your recipe

$ conda build <recipe-dir>

you will be prompted to upload to anaconda.org.

To add your anaconda.org channel, or the channel of others to conda so that conda install will find and install their packages, run

$ conda config --add channels https://conda.anaconda.org/username

(replacing username with the user name of the person whose channel you want to add).

Getting Help

The documentation for conda is at https://conda.io/en/latest/. You can subscribe to the conda mailing list. The source code and issue tracker for conda are on GitHub.

Contributing

open in gitpod for one-click development

Contributions to conda are welcome. See the contributing documentation for instructions on setting up a development environment.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].