Is there a way to make the `@conda` decorator only...
# ask-metaflow
w
Is there a way to make the
@conda
decorator only use an internal CodeArtifact repo?
1
s
You can set the conda channels in your environment to pull from internal sources instead
CONDA_CHANNELS=foo,bar python flow.py --environment=conda run
to pull packages from specific conda channels, you can specify them as
conda-channel::package-name
instead of just
package-name
in
@conda
w
does this mean we need to create a custom conda channel? We already have an internal CodeArtifact repo which isn't available as a conda channel
s
conda can only pull packages from a location that behaves like a conda channel and contains conda packages. our
@pip
implementation will be able to pull down pip packages from a pypi repository.
that implementation is in the works
w
any ETA on the
@pip
implementation?
s
it's scheduled for this quarter
💪 1
1