Hi, I've been able to access local `whl` file usin...
# ask-metaflow
b
Hi, I've been able to access local
whl
file using the syntax
Copy code
@pypi(
        python="3.11.5",
        packages={
            "/my/directory/path/mylibrary.whl": "",
        },
    )
using the
metaflow-netflixext
package. I'm having to have
mamba
installed though. Is there any way of configuring things so that
mamba
is not required? For example, setting an env variable to use
conda
instead?
1