I use Pandas 0.20.3 and Pyinstaller 3.3.1 on anaconda, Windows7. I create an executable but when I run it I get "no module named pandas" error. For testing, I also made a basic file as follows which yielded the same error when I created the exe file :
import pandas
print("x")
I followed the steps described in the 2 answers in this thread but nothing has changed. My only doubt is regarding the sentence below which is a part of the the second answer in the thread:
"I reinstalled pyinstaller manually via python setup.py install in the Pyinstaller directory."
I am not sure if I got this but I just uninstalled and reinstalled pyinstaller via pip to replicate this.