I'm trying out the `@conda` decorator and having s...
# ask-metaflow
c
I'm trying out the
@conda
decorator and having some issues. I have created a very simple setup that installs numpy and a specific python version, and am encountering the error:
Copy code
Step: start, Error: PackagesNotFoundError: The following packages are not available from current channels:
    
      - numpy==1.23.5
      - python==3.9.15
    
    Current channels:
    
      - <https://conda.anaconda.org/conda-forge/osx-arm64>
      - <https://conda.anaconda.org/conda-forge/noarch>
I have confirmed that creating a conda env outside of Metaflow succeeds in finding/installing those packages. And I am also able to reproduce the error if I set the environment variable (as Metaflow does)
CONDA_USE_ONLY_TAR_BZ2=True
. The only seemingly relevant result when Googling that environment variable is an issue posted by you@square-wire-39606 😅. Any idea how I should get the Metaflow conda env finding the correct package?