```plugins: extractors: - name: tap-jobdiva ...
# troubleshooting
i
Copy code
plugins:
  extractors:
  - name: tap-jobdiva
    pip_url: -e .\\taps\\tap-jobdiva\\tap_jobdiva
I can't seem to install my custom made tap into my main meltano project. Here's what my pip_url looks like but I keep getting this error:
Copy code
>meltano install extractors
Extractor 'tap-jobdiva' is not known to Meltano. Try running `meltano lock --update --all` to ensure your plugins are up to date.
then when I run
meltano lock --update --all
it gives me this:
Copy code
Extractor 'tap-jobdiva' is not known to Meltano. Check <https://hub.meltano.com/> for available plugins.
(the "tap_jobdiva" dir is where my client.py, auth.py, tap.py, & streams.py all exist)
1
r
It's a custom plugin, so you need to define a `namespace`:
Copy code
- name: tap-jobdiva
    pip_url: -e .\\taps\\tap-jobdiva\\tap_jobdiva
    namespace: tap_jobdjiva
.lock
files are not applicable for custom plugins - just those that exist on the Hub.
🙌 1
1
i
Awesome! that worked - thank you @Reuben (Matatika)
np 1