So what I want to do is import the custom packages into my remote execution
Custom packages which are just local to the repository cannot be installed, since the location of the cloned repository is not predefined
So I am running a pipeline(using tasks) remotely and one of my task is importing stuff from one of my local repository, but it's giving me an error when I run the pipeline remotely
I am able to run the pipeline locally though
DiminutiveToad80 , can you give a stand alone code example for such a pipeline that reproduces the issue? Each task should have it's own requirements logged. What is failing, the controller or individual steps?
And also I have a requirements file which I want to be installed when I run the pipeline remotely
Hi DiminutiveToad80 , can you please elaborate on what you mean/want to do?
DiminutiveToad80 is this local repository where the pipeline code resides?
I want to know how to execute pip install . to import all the custom packages
I am able to get the requirements installed for each task
All I need to do is
pip install -r requirements.txt
pip install .