Have anyone successfully made executable file using taipy module and pyinstaller. I made a new virtual environment, and pip install numpy, and pandas first. Then I pip install taipy. My program is as simple as :
import taipy
print('Hello Taipy')
I have compiled the program using pyinstaller
pyinstaller -F testtaipy.py
The exe file is created but when I run the program, it returned error message. Thanks