1

I have tried the mentioned solutions in PyInstaller and Pandas. I am getting the error that importing numpy fails in pandas init method. Any ideas how to solve this? Numpy 1.6.0 Pandas 0.24.0 Pyinstaller 3.4 Python 3.7

File "lib\site-packages\pandas\__init__.py", line 19, in <module>
ImportError: Missing required dependencies ['numpy']

There is already a hook-pandas as well as a hook-numpy python file in ../PyInstaller/hooks/.

Johannes Schmidt
  • 371
  • 3
  • 12

2 Answers2

1

I upgraded pyinstaller and fixed the issue for me

RigvedEpur
  • 11
  • 1
0

Numpy 1.6.1 just got released and did the trick for me. Somehow 1.6.0 caused problems for PyInstaller.

Johannes Schmidt
  • 371
  • 3
  • 12