Hey, we’re running into trouble installing Adswerv...
# troubleshooting
p
Hey, we’re running into trouble installing Adswerve’s
target-bigquery
because of a dependency conflict with the version of
setuptools
. I think it’s because Meltano is installing 57.5.0 and the target seems to require 57.4.0. Any idea what the best way around this is?
Copy code
ERROR: Cannot install setuptools==57.5.0 and target-bigquery==0.11.0 because these package versions have conflicting dependencies.
e
Hi @prratek_ramchandani! Perhaps you can try adding the older version of setuptools to the pip_url:
Copy code
- name: target-bigquery
  pip_url: setuptools==57.4.0 target-bigquery
The tap requirements should probably be updated at some point too
p
nice, thanks i’ll try that
e
Cool. Do let me know if that worked
p
Copy code
ERROR: Cannot install setuptools==57.4.0 and setuptools==57.5.0 because these package versions have conflicting dependencies.
🙃
fwiw i’m seeing the issue as part of our deployment process, which runs this bash script to install meltano in a separate virtual environment from the rest of our airflow project (which has a number of non-meltano DAGs with their own dependencies)