Skip to content
Advertisement

How do I install python dependency modules through bamboo

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:

  1. 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.
  2. 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).
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement