I recently installed Flix-CLI using PowerShell and it worked fine for a few shows. However, tonight when I tried to watch something, I encountered this error:
```
Traceback (most recent call last):
File "", line 198, in _run_module_as_main
File "", line 88, in _run_code
File "C:UsersbetascoopappspythoncurrentScriptsflix-cli.exe__main__.py", line 2, in
from flix_cli.core.__flix_cli__ import app
ModuleNotFoundError: No module named 'flix_cli'
```
I'm not sure what to do next. I asked in their Discord but didn't get any responses.
3 Answers
You could also reach out to their support through email as mentioned on their website. Sometimes community responses can be slow, but official support might be quicker!
Those error messages are specific to Python. If you've switched sessions after installing Flix-CLI, it’s possible the module isn’t available in your current environment. Installing the module again might fix the issue. Also, Flix-CLI has a [GitHub page](https://github.com/DemonKingSwarn/flix-cli) where you can find more info and possibly support.
This isn't a PowerShell issue. It seems like the Flix-CLI program, which is likely written in Python, can't find the necessary module. You might want to check your Python environment and ensure that `flix_cli` is installed properly. If you closed your PowerShell session, the module may not be loaded in a new session.
Exactly! Double-check your Python installation and try reinstalling Flix-CLI if needed. Sometimes, modules don't persist when sessions close.

Yeah, definitely check out their GitHub. They might have updates or instructions that can help solve your problem.