I'm also having this problem now, that I run `uvx ...
# getting-started
a
I'm also having this problem now, that I run
uvx meltano install
and the instalation fails, it was working before and now I dont't quite understand what is going wrong. It seems it is trying to install the tap-awin using a 3.13 python env that I dont know where is it coming from. The tap I have in a local repo, and the pyproject doesn't point to python 3.13 but:
Copy code
[tool.poetry.dependencies]
python = "<3.10,>=3.6.2"
requests = "^2.25.1"
singer-sdk = "^0.3.16"
and my meltano project should be running using python 3.9 (that is what I see when I do
uv run python --version
) any ideas here? also If I go directly to the tap repo and run
poetry install
it works without issues, clues? thanks! 🙂
✅ 1
e
how about
uvx --python 3.9 meltano install
? If that works it might be worth adding a
.python_version
file to your project.
a
That worked! thank you very much 😇
🙌 1