brandon_chin
10/20/2022, 6:11 PMWill Da Silva (Arch)
10/20/2022, 6:42 PMedgar_ramirez_mondragon
10/20/2022, 6:43 PMmeltano install relies on pip and virtualenv, and there’s no way at the moment to use Conda.
You could still use Meltano, just without the niceties of `meltano install`:
1. manually install and manage the conda environments for each extractor
2. override the executable key in the plugin definition in meltano.yml
The file would look something like
plugins:
extractors:
- name: tap-mssql
pip_url: null
executable: path/to/some/conda/env/bin/tap-mssqlbrandon_chin
10/20/2022, 6:44 PMWill Da Silva (Arch)
10/20/2022, 6:47 PMvenv being banned. It's used internally by many Python tools. In my experience, the usual way to lock down Python environments is at the network level by blocking the standard Python package index, and only permitting the use of corporate-controlled Python package indexes. Then there's "bank Python" which is a whole world onto itself...christoph
10/20/2022, 8:29 PMbrandon_chin
10/21/2022, 2:41 AMedgar_ramirez_mondragon
10/21/2022, 3:15 AM