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, I Noted That If I Run My Codes On My Laptop With Remote_Execute Off A Python3.8 Venv, And When The Remote Task Starts Executing But The Image Is Installed With A Different Version Of Python, Say Python3.8, We Would Encounter Errors With Venv. At This

Hi, i noted that if I run my codes on my laptop with remote_execute off a python3.8 venv, and when the remote task starts executing but the image is installed with a different version of python, say python3.8, we would encounter errors with venv. At this point its just a nuisance but i would like to better understand how python versions are determined and managed when running on remote execution?

  
  
Posted 2 years ago
Votes Newest

Answers 3


This can be a bit of a problem as well since not all packages for 3.8 have the same versions available for 3.6 for example. It's recommended to run on the same python versions OR have the required python version installed on the remote machine

  
  
Posted 2 years ago

They don't have the same version. I do seem to notice that if the client is using version 3.8, during remote execution will try to use that same version despite the docker image not installed with that version.

  
  
Posted 2 years ago

SubstantialElk6 , the agent is designed to re-run in an environment as close as possible to the original. Can you please provide logs of the two experiments so we can compare? I'm not sure what the issue is. Do both computers have the same python versions?

  
  
Posted 2 years ago
542 Views
3 Answers
2 years ago
one year ago
Tags