I am trying to run a python program through bamboo.
How do I install python dependency modules through bamboo I need to install some python modules like flask , xldr etc.
Advertisement
Answer
You have two options:
- Remote or log into the Bamboo agent and manually install the modules. This is a one time install and then they will be there for the task to use in the future.
- Run the job using a Docker host instead of the local agent. Then you can specify all the dependencies in the Docker image that is used to build (e.g., Python version, imports).