Hi does Metaflow support GCP as a private pypi ind...
# ask-metaflow
h
Hi does Metaflow support GCP as a private pypi index?
1
a
yep! you just need to be authenticated locally against your private pypi index for
--environment=pypi/conda
to work
h
Yeah I thought I had it setup but I keep getting this error
Copy code
2025-07-17 13:51:02.723 Bootstrapping virtual environment(s) ...
    Pip ran into an error while setting up environment:
    Unable to find a binary distribution compatible with private-package>=2.0.0 for linux-64.
    
    Note: @pypi does not currently support source distributions
the private package definitely has a wheel
a
does your pip config reference the private pypi registery?
h
yep
Copy code
[global]
extra-index-url = <https://us-python.pkg.dev/><PROJECT>/bdai-pip/simple/
a
and you are able to execute pip install successfully outside of metaflow
h
yeah outside of metaflow I can
a
what's the output of pip config list
h
Copy code
global.extra-index-url='<https://us-python.pkg.dev/engineering-380817/bdai-pip/simple/>'
a
that should work. can you double check that a properly tagged wheel does exist?
you would want to check the tags for the wheel
h
yeah I think that is it
we don't have linux set on the platform compatibility tags. I'll try updating those thankyou
👍🏼 1