Hello unmet hours community,
I am in the process of writing some python measures which are intended to work in a OpenStudio workflow (.osw), I came across this measure from PNNL
the measure uses a pip package cooper by importing it in measure.rb like so:
import copper as cp
import typing
By default the Openstudio cli the command
openstudio run --workflow
does not come with these pip packages preloaded, how can I load pip packages into the OpenStudio cli?


