https://dagster.io/ logo
k

Kaspars

04/06/2021, 1:15 PM
Hi How python dependencies (normally in requirements.txt) have to be added to user scripts in helm (k8sScheduler/celeryK8sRunLauncher) deployment? Do we have to add requirements manually/ it is handled automatically (like using requirements.txt etc) Maybe somebody can give hint where to look/ how to solve this. For example, in user scripts I am trying to use newsfetch library but having error:
a

alex

04/06/2021, 5:20 PM
No installs are done automatically - so you’ll need to pip install your requirements.txt in your Dockerfile
k

Kaspars

04/07/2021, 8:02 AM
thankyou bowthanks