Hi! I’m trying to run tap-pardot > tap-jsonl an...
# troubleshooting
a
Hi! I’m trying to run tap-pardot > tap-jsonl and it fails with strange error:
Copy code
Run invocation could not be completed as block failed: Cannot start plugin tap-pardot: Executable 'tap-pardot' could not be found. Extractor 'tap-pardot' may not have been installed yet using `meltano install extractor tap-pardot`, or the executable name may be incorrect.
I’ve done the following steps (Python 3.8.3):
Copy code
meltano init my-new-project
cd my-new-project

meltano add extractor tap-pardot
I did a search over slack and found some people were able to run it… Thx in advance!
a
I would recommend doing what the instruction says
meltano install extractor tap-pardot
For future clarity,
meltano add
just adds a plugin. You still have to do
meltano install
to create the venv.
a
thx!