Hello, everyone! I am having trouble installing `t...
# troubleshooting
c
Hello, everyone! I am having trouble installing
target-pinecone
. Is anyone else experiencing similar issues?
e
Hi @cesar_rubim! Can you expand on what troubles you're running into? Also might help to know: Meltano version, Python version, operating system.
c
I am using Python 3.8.10, running on a Ubuntu 20.04, and with Meltano 3.1.0 version. When I ran the command
meltano add loader target-pinecone
, meltano fails installing the plugin, and at some point of the loader installation logs, the
pip.log
file contains something like
Copy code
Cloning <https://github.com/meltano/sdk.git> (to revision standardize_load_methods) to /tmp/pip-install-3x7s1nr8/singer-sdk_ac416ac981594cb188b8c2d0eb481752
Running command git version
git version 2.25.1
Running command git clone --filter=blob:none --quiet <https://github.com/meltano/sdk.git> /tmp/pip-install-3x7s1nr8/singer-sdk_ac416ac981594cb188b8c2d0eb481752
Running command git show-ref standardize_load_methods
WARNING: Did not find branch or tag 'standardize_load_methods', assuming revision or ref.
Rev options <RevOptions git: rev='standardize_load_methods'>, branch_name None
Running command git rev-parse HEAD
655c06c73cc6b0bd3d8cd012232b9bba257aa5fe
Running command git checkout -q standardize_load_methods
error: pathspec 'standardize_load_methods' did not match any file(s) known to git
ERROR: git checkout -q standardize_load_methods exited with 1
[bold magenta]full command[/]: [blue]git checkout -q standardize_load_methods[/]
[bold magenta]cwd[/]: /tmp/pip-install-3x7s1nr8/singer-sdk_ac416ac981594cb188b8c2d0eb481752
ERROR: git checkout -q standardize_load_methods exited with 1
I could reproduce the same error when using another virtual environment, and another laptop (with another Ubuntu version).
e
I see. I think I know what's going on. What's the value of the
pip_url
?
c
@edgar_ramirez_mondragon, any thoughts or perhaps suggestions on how I could correctly install this loader? It seems to me that the pip_url is correct!
u
Yeah, if you can try submitting a PR to the target-pinecone repo: https://github.com/MeltanoLabs/target-pinecone/blob/4b14a57a73762453082bb74158e87674041816b1/pyproject.toml#L18 Gotta change that line to
singer-sdk = "^0.31.0"
and run
poetry lock
.
c
It works! Thanks!!!!