I faced an issue when I downloaded uwg with pip install.
Indeed, I have noticed that the "resources" folder is not downloaded autmatically, so I can't uses readDOE.py
My solution :
copy/paste "resources" folder from github to my "site-packages/uwg" folder
modify line 27 in readDOE.py
DIR_DOE_PATH = os.path.join(DIR_CURR, "..", "resources", "DOERefBuildings")
to
DIR_DOE_PATH = os.path.join(DIR_CURR, "resources", "DOERefBuildings")
Dear uwg users,
I faced an issue when I downloaded uwg with
pip install
. Indeed, I have noticed that the "resources" folder is not downloaded autmatically, so I can't uses readDOE.pyMy solution :
I guess there is a better way to figure it out