How do I get dependencies like this? I had this script running correctly at some point but in a fresh install it doesnt fetch ifcopenshell. I recall that it fetched it automatically in the script editor back then?
#r:ifcopenshell
#!/usr/bin/env python3
"""
IFC All Reader
Author: Mathias Sønderskov Schaltz, (C) LINK Arkitektur 2025
Date: 2025-08-04
"""
import System
import time
from collections import defaultdict, OrderedDict
import math
import threading
from functools import lru_cache
import gc
import weakref
import Rhino
import sys
import Rhino.Geometry as rg
import Rhino.UI
import scriptcontext as sc
import rhinoscriptsyntax as rs
import ifcopenshell
import ifcopenshell.geom
import ifcopenshell.util.placement
But I am getting
Traceback (most recent call last):
File "file:/xxxx_Snippets_Python/IFC_AllReader.py", line 25, in <module>
ModuleNotFoundError: No module named 'ifcopenshell'
I thought the #r:ifcopenshell would make the scripteditor install it with pip?