How do I install the application Python dependencies from a local repository (Artifactory)?
In order to install the Python dependencies from the MMG tarball (mmg-<version>.tar.gz) by using a local repository, run: (Replace <version> with your OFS MMG build version.)
python3 m pip install mmg<version>.tar.gz \
--index-url http://artifactory.XYZ.com/artifactory/api/pypi/XYZ-py-local/simple \
--trusted-host artifactory.XYZ.com
Add an extra index URL if they are differentL
python3 m pip install mmg<version>.tar.gz \
--index-url http://artifactory.XYZ.com/artifactory/api/pypi/XYZ-py-local/simple \
--extra-index-url http://artifactory.XYZ.com/artifactory/api/pypi/XYZ-py-local/simple \
--trusted-host artifactory.XYZ.com