Hello community this must be really simple but I f...
# troubleshooting
a
Hello community this must be really simple but I feel I am missing something . Is it not possible to add custom loader/extractor present on a public github url through command line ( i.e. without modifying
meltano.yaml
) ? Some examples I tried :
Copy code
Command : 
meltano add --custom loader s3-csv namespace="s3-csv" pip_url="git+<https://github.com/myuser/s3-csv.git>" executable="s3-csv" settings="s3_path"

Error :
The plugin name 'git+<https://github.com/myuser/s3-csv.git>' cannot contain the state ID component delimiter string ':'
or
Copy code
Command: 
meltano add --custom loader s3-csv --namespace s3-csv --pip_url git+<https://github.com/myuser/s3-csv.git> --executable s3-csv --settings s3_path

Error:
Error: No such option: --namespace
a
Hi, @abhishek_singh. As of now,
--custom
installations are only possible interactively. We'd welcome a feature request in our issue tracker though. I can see this being very beneficial for certain use cases.
a
Thanks @aaronsteers I can create something on the issue tracker 🙌