Hi! I am trying to install Singer tap tap-snapchat...
# troubleshooting
k
Hi! I am trying to install Singer tap tap-snapchat-ads using Meltano docker. meltano.yml looks like this (see below) but when I run
docker run -v $(pwd):/projects -w /projects meltano/meltano invoke tap-snapchat-ads --help
I got this
Copy code
Environment 'dev' is active
Executable 'tap-snapchat-ads' could not be found. Extractor 'tap-snapchat-ads' may not havebeen installed yet using `meltano install extractor tap-snapchat-ads`, or the executable name may be incorrect.
Is it an issue? The yml file
Copy code
version: 1
default_environment: dev
project_id: 38abda5d-d234-46da-a836-f60dfaedc3ce
plugins:
  extractors:
  - name: tap-snapchat-ads
    namespace: tap_snapchat_ads
    pip_url: tap-snapchat-ads
    executable: tap-snapchat-ads
    capabilities:
    - catalog
    - discover
environments:
- name: dev
- name: staging
- name: prod
It all works well with standard extractor like
tap-gitlab
, but it doesn't seem working for custom snapchat. Should I define settings explicitly or something like this?
v
Did you run
meltano install
?
p
hey @khristina_rustanovich ! Yeah did you try the suggestion from the log message
meltano install extractor tap-snapchat-ads
? You could also include
--clean
in case it needs to be re-installed
k
@pat_nadolny @visch thank you ! No, I didn't. I used only
meltano add -custom extractor tap-snapchat-ads
from docs and didn't install the extractor. Thank you very much!