Same error, no LBT modules are able to load. I ran the set_python_path.bat
with Rhino closed, no file was created in ...\AppData\Roaming\McNeel\Rhinoceros\6.0\Plug-ins\IronPython (814d908a-e25c-493d-97e9-ee3861957f49)\settings
. I created a settings-Scheme__Default.xml
file manually following the example from here: Why do I get this message: Failed to import X: No module named X, but still no luck.
No spaces, dots, or special characters in my ladybug_tools path.
My temporary fix was to create a python component in grasshopper to extend the path like this:
# corrected previous suggestion:
import sys
mypath = "C:\Users\<Username>\ladybug_tools\python\Lib\site-packages"
if mypath not in sys.path:
sys.path.append(mypath)
where <Username> has to be replaced with your username.
After running the solution again, everything loaded properly.