hello, I'm trying to use the `@pypi` decorator on ...
# ask-metaflow
h
hello, I'm trying to use the
@pypi
decorator on a step while also having the
netflix_ext
installed... I'm getting this error when running:
Copy code
(metaflow) ruben@ruben-A6:~/work/test-metaflow$ python test_flows/sfgpflow_local.py run
Metaflow 2.11.5.post2+gitfbe4aa1 executing SFGPFlow for user:ruben
Validating your flow...
    The graph looks good!
Running pylint...
    Pylint not found, so extra checks are disabled.
    Incompatible environment:
    The @pypi decorator requires --environment=conda
I ended up getting super confused because I was trying to add log statements to the
pypi_decorator.py
in the core metaflow repo, but then I found out that the error is actually originating from here: https://github.com/Netflix/metaflow-nflx-extensions/blob/main/metaflow_extensions/netflix_ext/plugins/conda/conda_step_decorator.py#L67 Any thoughts about how I can go about debugging this?
1