visch
04/28/2021, 2:50 PMmeltano add and ot failed due to that file existing and causing a problem with asyncio (Error was very clear. I don't have a solution or a concern really just an observation!visch
04/28/2021, 2:50 PMvisch
04/28/2021, 2:50 PMC:\code\meltano-windowstest2>meltano add extractor tap-csv
Extractor 'tap-csv' already exists in your Meltano project
To add it to your project another time so that each can be configured differently,
add a new plugin inheriting from the existing one with its own unique name:
meltano add extractor tap-csv--new --inherit-from tap-csv
Installing extractor 'tap-csv'...
Extractor 'tap-csv' could not be installed: could not create of the virtualenv for 'extractors/tap-csv'
Traceback (most recent call last):
File "C:\Users\derek\AppData\Local\Programs\Python\Python38\lib\runpy.py", line 185, in _run_module_as_main
mod_name, mod_spec, code = _get_module_details(mod_name, _Error)
File "C:\Users\derek\AppData\Local\Programs\Python\Python38\lib\runpy.py", line 144, in _get_module_details
return _get_module_details(pkg_main_name, error)
File "C:\Users\derek\AppData\Local\Programs\Python\Python38\lib\runpy.py", line 111, in _get_module_details
__import__(pkg_name)
File "C:\Users\derek\AppData\Local\Programs\Python\Python38\lib\venv\__init__.py", line 10, in <module>
import subprocess
File "C:\code\meltano-windowstest2\subprocess.py", line 1, in <module>
import asyncio File "C:\Users\derek\AppData\Local\Programs\Python\Python38\lib\asyncio\__init__.py", line 8, in <module> from .base_events import * File "C:\Users\derek\AppData\Local\Programs\Python\Python38\lib\asyncio\base_events.py", line 40, in <module> from . import events File "C:\Users\derek\AppData\Local\Programs\Python\Python38\lib\asyncio\events.py", line 205, in <module> class AbstractEventLoop: File "C:\Users\derek\AppData\Local\Programs\Python\Python38\lib\asyncio\events.py", line 482, in AbstractEventLoop stdin=subprocess.PIPE, AttributeError: partially initialized module 'subprocess' has no attribute 'PIPE' (most likely due to a circular import)douwe_maan
04/28/2021, 3:33 PMimport subprocessvisch
04/28/2021, 6:51 PM