Hi there, I'm trying to test out `tap-sharepointsi...
# getting-started
k
Hi there, I'm trying to test out
tap-sharepointsites
and I am getting this error
Copy code
2025-03-04T11:39:22.288098Z [error    ] Extractor 'tap-sharepointsites' could not be installed: Failed to install plugin 'tap-sharepointsites'.
2025-03-04T11:39:22.288141Z [info     ] ERROR: Ignored the following versions that require a different python version: 0.0.1 Requires-Python >=3.7.1,<3.11
ERROR: Could not find a version that satisfies the requirement tap-sharepointsites (from versions: none)
ERROR: No matching distribution found for tap-sharepointsites

Need help fixing this problem? Visit <http://melta.no/> for troubleshooting steps, or to
join our friendly Slack community.

Failed to install plugin(s)
Originally, I had Python 3.11 so I used pyenv to downgrade to Python 3.10 but it still seems like it doesn't want to find the right version. Does anyone have any ideas about what I should try out?
1
r
You can reference a different Python executable with the
--python
option of `meltano add`:
Copy code
meltano add --update --python python3.10 extractor tap-sharepointsites
https://docs.meltano.com/reference/settings/#python > If not specified, the top-level python setting will be used, or if it is not set, the python executable that was used to run Meltano will be used (within a separate virtual environment).
1
k
Looks like it's working, thanks!
🙌 2