Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hi Everyone, How Can One Import Additional Requirements To The Pipeline While Remote Execution

Hi everyone, how can one import additional requirements to the pipeline while remote execution

  
  
Posted one year ago
Votes Newest

Answers 13


yes

  
  
Posted one year ago

So what I want to do is import the custom packages into my remote execution

  
  
Posted one year ago

All I need to do is

pip install -r requirements.txt
pip install .
  
  
Posted one year ago

I am able to get the requirements installed for each task

  
  
Posted one year ago

@<1610083503607648256:profile|DiminutiveToad80> is this local repository where the pipeline code resides?

  
  
Posted one year ago

Custom packages which are just local to the repository cannot be installed, since the location of the cloned repository is not predefined

  
  
Posted one year ago

I want to know how to execute pip install . to import all the custom packages

  
  
Posted one year ago

@<1610083503607648256:profile|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?

  
  
Posted one year ago

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

  
  
Posted one year ago

Hi @<1610083503607648256:profile|DiminutiveToad80> , can you please elaborate on what you mean/want to do?

  
  
Posted one year ago

And also I have a requirements file which I want to be installed when I run the pipeline remotely

  
  
Posted one year ago

I am able to run the pipeline locally though

  
  
Posted one year ago

individual steps are failing

  
  
Posted one year ago
803 Views
13 Answers
one year ago
one year ago
Tags