Hi - I try to run `meltano run tap-csv target-s3` ...
# troubleshooting
s
Hi - I try to run
meltano run tap-csv target-s3
and keep getting an error saying
Executable 'tap-csv' could not be found.
But I can see that in
/.meltano/extractors
, there's
tap-csv
. How can I further debug this? I tried using
--log-level=debug
and it shows
FileNotFoundError: [Errno 2] No such file or directory: '.../.meltano/extractors/tap-csv/venv/bin/tap-csv'
, but I can
cd
into the
/bin
and see the
tap-csv
. Re-running
meltano install extractor tap-csv
doesn't seem to help either.
1
r
Have you tried
Copy code
meltano install --clean extractor tap-csv
? Otherwise, can you share your
meltano.yml
and the
.lock
file for
tap-csv
(under
plugins
)?
s
@Reuben (Matatika) Thanks for the quick reply - it looks like --clean helped!
🙌 1
Thanks!
r
Nice! 😄