Hi just trying out meltano with with the getting s...
# getting-started
d
Hi just trying out meltano with with the getting started. Just tying to do a dry run and get a feel of how it works. However, after following through with the tutorial. I got this error: Extractor 'tap-github' could not be installed: could not create the virtualenv for 'extractors/tap-github' Need help fixing this problem? Visit http://melta.no/ for troubleshooting steps, or to join our friendly Slack community. Failed to install plugin(s)
w
Hi @daniel_antwi. Sorry your ran into this. Could you please provide the output from the following commands: •
pip -V
meltano --version
Were you following this tutorial, and was this the command you ran that gave you the error?
Copy code
meltano add extractor tap-github --variant=meltanolabs
c
Also, which method did you choose to install meltano? 'pip', 'docker' or 'pipx'?
d
pip 20.0.2 from /usr/lib/python3/dist-packages/pip (python 3.8)
meltano, version 2.12.0
@christoph I installed using pip
c
I wonder if the
pip
installation instructions are missing a step .... Can you try running
python -m venv -h
and let us know the result?
d
Sure
here is the result
c
Thanks! I wanted to make sure that the
venv
module is actually installed on your machine, which it indeed is. I don't quite have a theory for why you are getting the
could not create the virtualenv
error yet
If you are willing to try another installation method for meltano, you could use this installation procedure which uses
pipx
instead of `pip`: https://docs.meltano.com/getting-started/#local-installation
If you try that, you should first uninstall the copy of meltano that you already installed via
pip install meltano
though, otherwise you will have 2 copies of meltano installed and your computer will probably keep using the old (non-working) copy
To un-install the previously installed copy, you should run
pip uninstall meltano
d
@christoph I used pipx and it's working fine now. Thanks