Forum Discussion
Fabric Deploy Wheel from DevOps Artefact Stream
Hi philippfreswica without to much additional information I'd venture to share a couple of notes, worht while to check .... the error you’re seeing states an invalid index url, the Fabric preview feature for custom environments expects a valid pip index URL (with https:// scheme) and proper authentication via the Azure Artifacts... the URL you fetched from the connection settings (xxxxxxxx-6ef3-4031-bbd9-afde27a73a78) is likely just an internal feed ID, not the full index URL, therefore, you need to get the correct index URL from Azure DevOps
Go to Artifacts → Your Feed → Connect to Feed → Python (pip).
Hope it helps, please kudos if you found this information useful, and please keep me posted 🙏 ... best of lucks!
Ok - had the time to test it and still not working - here the yml content:
dependencies:
- pip:
- dflydphelper==2.0.0.dev0
- --index-url=https://pkgs.dev.azure.com/XXX/_packaging/dfly-python-fabric-libs/pypi/simple/Still fails 😕 -> here is the link to ms reference: Bibliotheksverwaltung in Fabric-Umgebungen - Microsoft Fabric | Microsoft Learn (sorry german)
And based on the docs, this should work like:
# Replace the Azure Artifact Feed URL with connection ID
dependencies:
- pip:
- fuzzywuzzy==0.18.0
- wordcloud==1.9.4
- --index-url <YOUR_CONNECTION_ID>
Thanks for your support!
Philipp