Dagster issue: after installing meltano with pipx,...
# plugins-general
i
Dagster issue: after installing meltano with pipx, then adding the dagster utility, do I need to pip or pipx download dagster or dagster_meltano or do any other action to invoke dagster? In my .meltano\dagster\repository.py it says "import dagster_meltano could not be resolved" and the
meltano invoke dagster:start
command is failing as well.
a
Can you share
meltano.yml
? I don't believe you should need any extra installs. Please share any error message from
meltano invoke dagster:start
too.
When you say
In my .meltano\dagster\repository.py it says "import dagster_meltano could not be resolved"
do you mean that is your IDE saying that message? That error may not happen at run time when the correct venv is activated.
As most of my IDE work is in yaml and sql (for meltano and dbt), the only python bits I will actually edit are in my dagster directory. So I tend to point my IDE to use the dagster utility sub-venv as the project venv to resolve this issue.
i
The issue was that I didn't declare the pendulum version in my
pip url
. After adding
pendulum<3
to my dagster pip_url's and re-installing the plugin the webserver worked
It was the IDE saying that message, yes