exe file starts but crashes with ModuleNotFoundError: No module named 'numpy.random.common'
I use pyinstaller --onefile hello.py --hidden-import pandas
and
.exe file fails.
I've tried to change the spec file with adding path to pandas
, but the .exe file still fails.
Contents of hello.py file:
import os
input("before loading pandas")
import pandas
print ("hello")
input('waiting for keyboard input')
Contents of spec file:
# -*- mode: python ; coding: utf-8 -*-
block_cipher = None
def get_pandas_path():
import pandas
pandas_path=pandas.__path__[0]
return pandas_path
a = Analysis(['CreateExcelSAList.py'],
pathex=['D:\\OneDrive - Ardovlam NV\\15. Python\\hello'],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
dict_tree=Tree(get_pandas_path(),prefix='pandas',excludes=["*.pyc"])
a.datas+=dict_tree
a.binaries=filter(lambda x:'pandas' not in x[0], a.binaries)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='hello',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True )
scoll=COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
strip=None,
upx=True,
name='hello')