CondaPkg._compatible_libstdcxx_ng_version
— Method_compatible_libstdcxx_ng_version()
Version of libstdcxx-ng compatible with the libstdc++ loaded into Julia.
Specifying the package "libstdcxx-ng" with version "<=julia" will replace the version with this one. This should be used by anything which embeds Python into the Julia process - for instance it is used by PythonCall.
CondaPkg._compatible_openssl_version
— Method_compatible_openssl_version()
Find the version that aligns with the installed OpenSSL_jll
version, if any.
See https://www.openssl.org/policies/releasestrat.html.
CondaPkg.activate!
— Methodactivate!(env)
"Activate" the Conda environment by modifying the given dict of environment variables.
CondaPkg.add
— Methodadd(pkg; version="", channel="", build="", resolve=true)
add([pkg1, pkg2, ...]; channel="", resolve=true)
Adds a dependency to the current environment.
CondaPkg.add_channel
— Methodadd_channel(channel; resolve=true)
Adds a channel to the current environment.
CondaPkg.add_pip
— Methodadd_pip(pkg; version="", binary="", resolve=true)
Adds a pip dependency to the current environment.
Use conda dependencies instead if at all possible. Pip does not handle version conflicts gracefully, so it is possible to get incompatible versions.
CondaPkg.bindirs
— Methodbindirs()
The directories containing binaries in the Conda environment.
CondaPkg.envdir
— Methodenvdir(...)
The root directory of the Conda environment.
Any additional arguments are joined to the path.
Throws an error if backend is Null.
CondaPkg.gc
— Methodgc()
Remove unused packages and caches.
CondaPkg.rm
— Methodrm(pkg; resolve=true)
rm([pkg1, pkg2, ...]; resolve=true)
Removes a dependency from the current environment.
CondaPkg.rm_channel
— Methodrm_channel(channel; resolve=true)
Removes a channel from the current environment.
CondaPkg.rm_pip
— Methodrm_pip(pkg; resolve=true)
Removes a pip dependency from the current environment.
CondaPkg.status
— Methodstatus()
Show the status of the current environment.
This does not include dependencies from nested environments.
CondaPkg.which
— Methodwhich(progname)
Find the binary called progname
in the Conda environment.
CondaPkg.withenv
— Methodwithenv(f::Function)
Call f()
while the Conda environment is active.