stephen_bailey
11/12/2021, 3:05 PMpyenv
and poetry
to set my meltano project back to 3.8 (because a bunch of SDK taps I made require 3.8).
In my Meltano dir, I did:
poetry env use python3.8
poetry install
poetry run meltano install
Many packages install correctly but for the ones that are from pypi, I get:
Extractor 'tap-jira' could not be installed: failed to install plugin 'tap-jira'.
/Users/sbailey/Documents/github/data-infrastructure/meltano/.meltano/extractors/tap-jira/venv/bin/python: No module named pip
If i run poetry run pip install --upgrade pip
, i get Requirement already satisfied: pip in ./.venv/lib/python3.8/site-packages (21.3.1)
, so I don't see any reason why pip
wouldn't be found. I hate asking for environment help, but has anyone seen something like this before?drew_ipson
11/12/2021, 4:57 PMdrew_ipson
11/12/2021, 5:57 PMmeltano install <extractor|loader> <plugin_name>
Hope this helps!stephen_bailey
11/12/2021, 6:54 PM.meltano
directory and not in .venv
, because obviously i am not going to read the actual error mesage that i postedstephen_bailey
11/12/2021, 6:57 PMInstalled 34/34 plugins
🏖️fred_reimer
11/16/2021, 2:00 AM