If we have PyPi Packages added as Artifacts to an Azure DevOps Project Feed, how can we use these packages as a source for installing packages in DatabricksStep of Azure Machine Learning Service?
While using pip in any environment, we use our Azure DevOps Project Artifacts feed in the following way:
However, PyPiLibrary(package = 'example-package', repo='https://<Personal-Access-Token>@pkgs.dev.azure.com/<Organization-Name>/_packaging/<Artifacts-Feed-Name>/pypi/simple/') will give an error. How exactly should we consume the Artifacts Feed as an input to the PyPiLibrary property of the DatabricksStep Class in Azure Machine Learning Service?
If we have PyPi Packages added as Artifacts to an Azure DevOps Project Feed, how can we use these packages as a source for installing packages in
DatabricksStep
of Azure Machine Learning Service?While using
pip
in any environment, we use our Azure DevOps Project Artifacts feed in the following way:The DatabricksStep class of the Azure Machine Learning Service accepts the following parameters:
However,
PyPiLibrary(package = 'example-package', repo='https://<Personal-Access-Token>@pkgs.dev.azure.com/<Organization-Name>/_packaging/<Artifacts-Feed-Name>/pypi/simple/')
will give an error. How exactly should we consume the Artifacts Feed as an input to thePyPiLibrary
property of theDatabricksStep
Class in Azure Machine Learning Service?