You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 4, 2025. It is now read-only.
This package, which builds on the Conda.jl package allows one to use conda as a BinDeps binary
provider for Julia. While other binary providers like
Homebrew.jl,
AptGet or
WinRPM.jl are platform-specific,
CondaBinDeps.jl is a cross-platform alternative. It can also be used without
administrator rights, in contrast to the current Linux-based providers.
As such, Conda.jl primary audience is Julia packages developers who have a dependency on some native library.
conda is a package manager which started as the binary package manager for the
Anaconda Python distribution, but it also provides arbitrary packages. Instead
of the full Anaconda distribution, Conda.jl uses the miniconda Python
environment, which only includes conda and its dependencies.
CondaBinDeps.jl is NOT an alternative Julia package manager, nor a way to manage
Python installations. It will not use any pre-existing Anaconda or Python
installation on your machine.
Basic functionality
You can install this package by running Pkg.add("CondaBinDeps") at the Julia prompt. See the Conda.jl package for information on setting
up conda environments, etcetera.
BinDeps integration: using Conda.jl as a package author
CondaBinDeps.jl can be used as a Provider for
BinDeps with the Conda.Manager
type. You first need to write a conda
recipe, and upload the
corresponding build to binstar. Then, add CondaBinDeps in your
REQUIRE file, and add the following to your deps/build.jl file: