does meltano support installing extractors/loaders...
# getting-started
d
does meltano support installing extractors/loaders from alternative package repositories?
d
Currently just whatever
pip install
supports, so that's PyPI and (public/private) Git repos
We have an issue to support Docker images: https://gitlab.com/meltano/meltano/-/issues/2205
Or are you thinking alternatives to PyPi, like a private package index?
d
yeah, we use jfrog artifactory to host private python packages
typically we just install by specifying a separate
--index-url
via pip
e
You can use pip's environment variables. Basically set
PIP_INDEX_URL
or
PIP_EXTRA_INDEX_URL
in your environment. I've installed taps from s3pypi packages doing something like this before. There's also a section in the plugin management docs.
d
Oh right forgot about those! Thanks @edgar_ramirez_mondragon