Max

Results 23 comments of Max

Thx a lot - 2 questions - 1) How can i tell pyinstaller that he should use a specific spec-file? (even when using --onefile)? 2) Is this path to the...

Thx again - when i run the above statement i get this error: ``` $ py -m Pyinstaller URLAnswering.spec G:\DEV\.venv\langchain\Scripts\python.exe: No module named Pyinstaller (langchain) ```

ok - then i get this error: ``` $ py -m PyInstaller URLAnswering.spec 245 INFO: PyInstaller: 6.1.0 245 INFO: Python: 3.10.7 252 INFO: Platform: Windows-10-10.0.19045-SP0 255 WARNING: collect_data_files - skipping...

Thx a lot for support - i tried to change the spec-file to this: ``` # -*- mode: python ; coding: utf-8 -*- block_cipher = None a = Analysis( ['URLAnswering.py'],...

Thx again - I now used this spec-file ``` # -*- mode: python ; coding: utf-8 -*- block_cipher = None a = Analysis( ['URLAnswering.py'], pathex=[], binaries=[], datas=[], hiddenimports=[], hookspath=[], hooksconfig={},...

Yes is its installed: `sentence-transformers 2.2.2` (and also the python-program is running fine - only when i create the executable with pyinstaller i get the error)

I now added this statement to the spec-file: `a.datas += Tree('G:\DEV\.venv\langchain\Lib\site-packages\sentence_transformers', prefix='sentence_transformers')` but i still get the same error as above (i realized that in the error-message the package is...

Hello - i tried what you suggest but still get the same error - created a hook-sentence-transformers.py in the same folder as the py- and spec-file: ``` from PyInstaller.utils.hooks import...

Thx a lot never the less for your help and efforts

Hello - thanks for your response - I heard from "get_page_info" the first time - is there somewhere a documentation i am missing? However i tried to run it with...