How do I install meltano azure? Do I add it as a p...
# troubleshooting
i
How do I install meltano azure? Do I add it as a plugin in my meltano.yml?
e
Depends on how you initially installed Meltano, but you wanna essentially do
pip install meltano[azure]
or
pipx install meltano[azure]
i
So does it run fine in a container then? Because I don't explicitly download meltano azure in my container. Do I make that change in my dockerfile?
e
Yeah, if you're using Docker you need to make that change in your
Dockerfile
i
Copy code
RUN meltano install
would it be just changing this to
meltano[azure]
?
Also do I need to do a pipx uninstall locally before I pipx install meltano[azure]
e
Yup, that should do it for the Dockerfile. Locally, either or just
pipx install meltano[azure] --force
should work.
1
i
Thank you! will try it out
👍 1
getting this trying to install in my dockerfile
Also still getting the azure meltano error running the pipeline from my cli. I'll try restarting for that one and hopefully that fixes it but I believe I also created a symlink to meltano.exe somewhere so I may need to change that.
r
You still want
RUN meltano install
. You need to change how Meltano is installed earlier in the Dockerfile, or reinstall it with the
azure
extra if you're extending from a different image.
1
e
Ah, yeah I missed that it is
meltano install
🤦‍♂️
i
I reached out to @joshua_janicas and his solution was changing it in the requirements.txt so I'm trying that now
👍 1
j
for reference i just have it part of my requirements.txt
👍 2