You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi I wrote a speech assistant that can be extended by skills. These skills come as python file and optionally a requirements.txt that I install programmatically using pip. In my anaconda environment it works well but when I build the application using cx_Freeze it cannot find the modules (even though the programmatic installation via pip is successful). Any ideas how I can do the dynamic installation and loading of modules?
The text was updated successfully, but these errors were encountered:
I think this is possible, however, cx-freeze is basically an isolated python, that is, it does not search for these external packages. But if you create an init script[1], you can create something along these lines. Basically, the 'site module'[2] has no effect in isolated mode.
Hi I wrote a speech assistant that can be extended by skills. These skills come as python file and optionally a requirements.txt that I install programmatically using pip. In my anaconda environment it works well but when I build the application using cx_Freeze it cannot find the modules (even though the programmatic installation via pip is successful). Any ideas how I can do the dynamic installation and loading of modules?
The text was updated successfully, but these errors were encountered: