Hi all, I seems like don’t understand on how to i...
# troubleshooting
e
Hi all, I seems like don’t understand on how to install library that can be used in Meltano’s included Airflow. I’ve go to my conda environment (which is
meltano
) and try to install the needed library using
Copy code
pip install -r requirements.txt
Then, when I add a DAGs that requires
requests
library, it show this said that the library is not exist
v
Could you explain / show what you're trying to make work in Airflow? Ideally code so
meltano.yml
and
orchestrate/
a
Hi, @edi_wijaya - Meltano creates isolated venvs for each plugin, including a dedicated one for your airflow install. You'll find that venv in the .meltano folder (for manual testing/addition) but the official way to modify those libraries would be to append to the pip_url for airflow within your meltano.yml file, then reinstall.
e
Very helpful answer. Thank you so much @aaronsteers