Cheng Ho Ming, Eric
Cheng Ho Ming, Eric
I encountered this error too
There is some pip-Win stuff in here too. https://pyinstaller.readthedocs.io/en/latest/usage.html#supporting-multiple-python-environments > Under Windows, the pip-Win package makes it especially easy to set up different environments and switch between them.
Use _ instead of -
Oops I’m wrong. `material` is the name for import and `mkdocs-material` is the name for pip install (distribution).
> It accepts a module or package name, but not a distribution (package) name. i think it has been specified in the hook documentation [`collect_all()`]( https://pyinstaller.readthedocs.io/en/latest/hooks.html#PyInstaller.utils.hooks.collect_all) that a `import`-able name...
https://github.com/pyinstaller/pyinstaller/blob/9cca9cb613f3824ac3035ed99a366a66e1dfb633/PyInstaller/utils/hooks/__init__.py#L1101 This will break if package name & distribution name are not the same. Maybe we should specify that in that case user should add an `--copy-metadata`?
try --onedir?
> (If it changes to Orange on non night mode when you choose orange theme, then that's the case Yes exactly! 
I am using a `Python 3.13` virtual environment created with [`uv`](https://docs.astral.sh/uv/) on `Windows 11`. Launching Flowframes with the following script works for me: ```bat setlocal rem Change to this script's...