Hi team, We're working with a client on their dat...
# questions
a
Hi team, We're working with a client on their databricks instance. How do we automatically bypass opting for usage analytics when running our kedro pipeline? Is there a way to provide a default answer? I ask this because we won't have the opportunity to manually opt-in when running our pipeline in production.
d
in your project run these shell commands:
Copy code
touch .telemetry
echo "consent: false" >> .telemetry
or you can uninstall
kedro-telemetry
from your project and you want be asked
this 2
slash remove it from the requirements
👍🏼 1
a
Thank you so much! will try this!