Hello everybody! I have a little question, I have ...
# getting-started
p
Hello everybody! I have a little question, I have a local version of Tap-Intacct that I use to work. I mostly added print statements to the code, change some things and run the pipeline with this version of the tap. If I need to import a new library in the code, how can I do it? Is because when I try to import a new library called voluptuous on the code, and I run the pipeline I have this error: ModuleNotFoundError: No module named 'voluptuous' I have the library installed, the version of python that I need, I cleaned the cache of VSCode, but I don't know if I need to do something different for meltano.
e
The steps I'd follow: • Add the library to the tap. The process changes based on whether the project uses a package manager (like Poetry), if any. In this case, you need to change https://github.com/hotgluexyz/tap-intacct/blob/85707a914d2d85c4276e7a0a440e02f10e588eb7/setup.cfg#L34-L37 • Set the
pip_url
to
-e  /path/to/local/version/tap
• Run
meltano install
p
Thanks a lot!