Hello guys i am trying to run meltano add extracto...
# plugins-general
n
Hello guys i am trying to run meltano add extractor tap-gong but i get this error: ERROR: Package 'tap-gong' requires a different Python: 3.10.12 not in '<3.9,>=3.7.1'. When i use pyenv to change the version to 3.8.12 for example and i set it locally or globally i still get the same error although i can that i am using the 3.8.12 version. Why is that?
e
By default plugins are installed with the same Python executable that was used to run Meltano. You can point to a different executable on a per-plugin basis:
Copy code
plugins:
  extractors:
  - name: tap-gong
    python: python3.8
https://docs.meltano.com/reference/settings/#project-pythonhttps://docs.meltano.com/reference/settings/#plugin-python
meltano add --python ...
https://docs.meltano.com/reference/command-line-interface#how-to-use