Keep kunning into `Emitter.__init__() got an unexp...
# troubleshooting
r
Keep kunning into
Emitter.__init__() got an unexpected keyword argument 'request_timeout'
. Even after a fresh virtual pyenv. Any ideas how to overcome the issue?
t
There’s been a few comments around this. https://meltano.slack.com/archives/C01TCRBBJD7/p1683789710899419 is one.
u
This occurs when older versions of some packages are installed into the Python virtual environment alongside Meltano. When installing a Python application such as Meltano, we strongly recommend using a clean virtual environment with no other packages installed other than the application and its dependencies. Using the tool
pipx
can help with this, as it creates isolated virtual environments for each application installed with it - our installation documentation touches on this.
r
thanks for the tip, I was under the impression fresh pip followed a new pyenv. Thanks guys.