I have not gotten the Link From Revit DXF underlay to work with Revit 2026 projects, is this a known bug?
Hi @krockwell1110,
Not that I know of. It should work just like any other version of Revit. Do you see any specific errors in the logs?
Actually itβs working right now. The error I was getting previously when it would not load:
2026.06.04 09:40:57.112|info|π read_dxf script is running...
2026.06.04 09:40:57.319|info|π 0.207 seconds.
2026.06.04 09:40:57.320|error|Traceback (most recent call last):
File "/lib/python313.zip/\_pyodide/\_base.py", line 597, in eval_code_async
await CodeRunner(
...<9 lines>...
.run_async(globals, locals)
File "/lib/python313.zip/\_pyodide/\_base.py", line 411, in run_async
coroutine = eval(self.code, globals, locals)
File "", line 3, in
File "/lib/python3.13/site-packages/ezdxf/**init**.py", line 27, in
from ezdxf.colors import (
...<4 lines>...
)
File "/lib/python3.13/site-packages/ezdxf/colors.py", line 5, in
from typing_extensions import Self
ModuleNotFoundError: No module named 'typing_extensions'
The module 'typing-extensions' is included in the Pyodide distribution, but it is not installed.
You can install it by calling:
await micropip.install("typing-extensions") in Python, or
await pyodide.loadPackage("typing-extensions") in JavaScript
See https://pyodide.org/en/stable/usage/loading-packages.html for more details.
, Traceback (most recent call last):
File "/lib/python313.zip/\_pyodide/\_base.py", line 597, in eval_code_async
await CodeRunner(
...<9 lines>...
.run_async(globals, locals)
File "/lib/python313.zip/\_pyodide/\_base.py", line 411, in run_async
coroutine = eval(self.code, globals, locals)
File "", line 3, in
File "/lib/python3.13/site-packages/ezdxf/**init**.py", line 27, in
from ezdxf.colors import (
...<4 lines>...
)
File "/lib/python3.13/site-packages/ezdxf/colors.py", line 5, in
from typing_extensions import Self
ModuleNotFoundError: No module named 'typing_extensions'
The module 'typing-extensions' is included in the Pyodide distribution, but it is not installed.
You can install it by calling:
await micropip.install("typing-extensions") in Python, or
await pyodide.loadPackage("typing-extensions") in JavaScript
See https://pyodide.org/en/stable/usage/loading-packages.html for more details.
I see! The error is related to one of the dependencies not being loaded which is strange. I will mark this as done for now but let us know if the issue happens again and we can try to recreate the issue.