Alright. Anyway I'm practicing with the pipeline. I have an agent listening to the queue. Only problem is, it fails because of requirement issues but I don't know how to pass requirements in this case.
Any way to make it automatically install any packages it finds that it requires? Or do I have to explicitly pass them in packages?
Considering I don't think the function itself requires Venv to run normally but in this case it says it can't find venv
I think the pipeline runs from start to end, starting when the first step starts
are there other packages other than venv required on the agent? Since I'm not sure exactly what packages do I need on the agent. Since the function normally wouldn't need venv. It just adds a number by 1
I would normally like for it to install any requirements needed on its own.
From the error you provided it looks like virtualenv isn't installed on the environment
VexedCat68 , I don't think such an example exists, but if you create one it would be great if you opened a PR for the open source 🙂
Ok since its my first time working with pipelines, I wanted to ask. Does the pipeline controller run endlessly or does it run from start to end with me telling it when to start based on a trigger?