Ran trifold publish and got this error -
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "C:\Users\pt\AppData\Roaming\uv\tools\trifold\Scripts\trifold.exe\__main__.py", line 4, in <module>
from trifold.__main__ import app
File "C:\Users\pt\AppData\Roaming\uv\tools\trifold\Lib\site-packages\trifold\__main__.py", line 7, in <module>
from typing_extensions import Annotated
ModuleNotFoundError: No module named 'typing_extensions'
I can get it working with -
uvx --with typing-extensions trifold publish
So how to install the typing extensions so I can remove it from the command line above?
Question - if this repo disappears will my uvx command stop working? If yes, maybe I should install trifold permanently?
Ran trifold publish and got this error -
```
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "C:\Users\pt\AppData\Roaming\uv\tools\trifold\Scripts\trifold.exe\__main__.py", line 4, in <module>
from trifold.__main__ import app
File "C:\Users\pt\AppData\Roaming\uv\tools\trifold\Lib\site-packages\trifold\__main__.py", line 7, in <module>
from typing_extensions import Annotated
ModuleNotFoundError: No module named 'typing_extensions'
```
I can get it working with -
```
uvx --with typing-extensions trifold publish
```
So how to install the typing extensions so I can remove it from the command line above?
Question - if this repo disappears will my uvx command stop working? If yes, maybe I should install trifold permanently?