Error running wine pyinstaller

Questions about Wine on Linux
Locked
xc0d3r
Newbie
Newbie
Posts: 1
Joined: Thu Sep 20, 2018 12:13 am

Error running wine pyinstaller

Post by xc0d3r »

Im running wine-3.0.2 (Debian 3.0.2-3) trying to install "pyinstaller" apearenly everythins is ok, but when I run

Code: Select all

wine pyinstaller -v
It shows this:

0030:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
Traceback (most recent call last):
File "c:\Python27\lib\runpy.py", line 174, in _run_module_as_main
"__main__", fname, loader, pkg_name)
File "c:\Python27\lib\runpy.py", line 72, in _run_code
exec code in run_globals
File "C:\Python27\Scripts\pyinstaller.exe\__main__.py", line 9, in <module>
File "c:\Python27\lib\site-packages\PyInstaller\__main__.py", line 79, in run
import PyInstaller.building.build_main
File "c:\Python27\lib\site-packages\PyInstaller\building\build_main.py", line 33, in <module>
from ..depend import bindepend
File "c:\Python27\lib\site-packages\PyInstaller\depend\bindepend.py", line 26, in <module>
from . import dylib, utils
File "c:\Python27\lib\site-packages\PyInstaller\depend\utils.py", line 25, in <module>
from ..lib.modulegraph import util, modulegraph
File "c:\Python27\lib\site-packages\PyInstaller\lib\modulegraph\util.py", line 16, in <module>
from ._compat import StringIO, BytesIO, get_instructions, _READ_MODE
File "c:\Python27\lib\site-packages\PyInstaller\lib\modulegraph\_compat.py", line 29, in <module>
from dis3 import get_instructions
ImportError: No module named dis3
User avatar
DarkShadow44
Level 8
Level 8
Posts: 1207
Joined: Tue Nov 22, 2016 5:39 pm

Re: Error running wine pyinstaller

Post by DarkShadow44 »

Please use code tags for formatting.

According to the log, you lack the python module dis3.
Locked