I am trying to run a model evaluation workflow whi...
# ask-metaflow
d
I am trying to run a model evaluation workflow which loads a pycaret model, so I'm using
@conda_base
:
Copy code
@conda_base(
    python="3.9.18",
    packages ={
        "pycaret": "3.2.0",
    }
)
and using the following command to run:
python evaluate.py --no-pylint --datastore=s3 --environment=conda run --with kubernetes
, I'm running into this error (have micromamba installed too):
Copy code
Bootstrapping virtual environment(s) ...
    Micromamba ran into an error while setting up environment:
    command '/opt/homebrew/bin/micromamba create --yes --quiet --dry-run --no-extra-safety-checks --repodata-ttl=86400 --retry-clean-cache --prefix=/var/folders/j0/hfs4782d1jd98hb6z392cnqw0000gn/T/tmpl5u0ll98/prefix --channel=defaults --channel=conda-forge --channel=nvidia requests==>=2.21.0 boto3==>=1.14.0 pycaret==3.2.0 python==3.9.13' returned error (1)
    nothing provides __glibc >=2.17,<3.0.a0 needed by nss-3.89.1-h6a678d5_0
running on MacOS M1, wondering if it's an OS related-issue
1