pyinstaller error: cannot find scipy (No module named _ufuncs_cxx)
问题 I am using pyinstaller to convert python script into a binary in Ubuntu (14.04). I use Canopy (Enthought) to manage all python libraries. The code uses networkx, numpy, and scipy. Here is my spec file: # -*- mode: python -*- a = Analysis(['main_test.py'], pathex=['/home/sean/Desktop/prog',], hiddenimports=[], hookspath=None, runtime_hooks=None) pyz = PYZ(a.pure) exe = EXE(pyz, a.scripts, exclude_binaries=True, name='main_test', debug=False, strip=None, upx=True, console=True ) coll = COLLECT