Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

After a fair bit of research, I determined the the only other alternatives to either setting the python path like so:

openstudio --python_path /path_to_python_packages run --workflow wkfl.osw

OR adding this in hte measure

sys.path.insert(0, 'path_to_custom_python_packages')

Is to

  1. Recompile OpenStudio to include the libraries which are needed
  2. Copy the packages over to the OpenStudio installation directory

After a fair bit of research, I determined the the only other alternatives to either setting the python path like so:

openstudio --python_path /path_to_python_packages run --workflow wkfl.osw

OR adding this in hte measure

sys.path.insert(0, 'path_to_custom_python_packages')

Is to

  1. Recompile OpenStudio to include the libraries which are needed
  2. Copy the packages over to the OpenStudio installation directory

If I attempt either of this I will add updates to this question