justin_cohen
10/10/2023, 1:45 PMmeltano install
many times, invoked it alone, utilized it in a meltano run
pipeline, etc. The project repo on github was transferred to an organization account (it seems that this was the root cause of the issues outlined below). I transferred the repo back to my user account, thinking this might resolved the problem.
The issue is that now when I go to install the custom tap I get the following error message:
jcohen@WIN-10-COHEN:~/meltano-dev/etl-overhaul-testing$ meltano install extractor tap-progressopenedge
Installing 1 plugins...
Installing extractor 'tap-progressopenedge'...
Need help fixing this problem? Visit <http://melta.no/> for troubleshooting steps, or to
join our friendly Slack community.
[Errno 13] Permission denied: '.gitignore'
I have no trouble installing other standard taps in my project:
jcohen@WIN-10-COHEN:~/meltano-dev/etl-overhaul-testing$ meltano install extractor tap-postgres
Installing 1 plugins...
Installing extractor 'tap-postgres'...
Installed extractor 'tap-postgres'
Troubleshooting performed thus far:
• I've checked the file permissions on the .gitignore file and they haven't changed (though it's unclear from the error which .gitignore file is causing the issue).
• I've ensured I'm authenticated with github using the GitHub CLI
• I've removed, and re-added the custom tap.
• I and another person testing the tap have tried to install the tap in a project on the windows OS receiving the following error:
ERROR: HTTP error 404 while getting <https://github.com/Jcohen010/tap-progressopenedge.git>
ERROR: Could not install requirement <https://github.com/Jcohen010/tap-progressopenedge.git> because of HTTP error 404 Client Error: Not Found for url: <https://github.com/Jcohen010/tap-progressopenedge> for URL <https://github.com/Jcohen010/tap-progressopenedge.git>
I'm not sure how to resolve this issue, I hope someone has some useful insights.
Thanks guys!
Justinjustin_cohen
10/10/2023, 2:31 PM[Errno 13] Permission Denied
erroredgar_ramirez_mondragon
10/10/2023, 6:07 PMmeltano install
after adding that as a custom plugin, so it's probably something to do with WSL.justin_cohen
10/10/2023, 6:21 PMjustin_cohen
10/10/2023, 6:22 PMedgar_ramirez_mondragon
10/10/2023, 6:26 PMvisch
10/10/2023, 6:36 PMmeltano install --clean
which wipes out the out files that were around for your venvs
another easy option is to just rm -rf .meltano
visch
10/10/2023, 6:37 PMls -lsa
is normally all you need to dive in and figure it outjustin_cohen
10/10/2023, 8:15 PMrm -rf .meltano
and it turns out the custom taps venv directory inside the .meltano folder somehow had its permissions changed as all other venvs in the project were deleted accept to that one, which returned permission denied errors. I manually deleted the tap's venv and successfully reinstalled it without any issue. Any idea how that could happen?justin_cohen
10/10/2023, 8:16 PMvisch
10/10/2023, 8:55 PM