Pyinstaller fail with Prophet
Hello everyone,
I wrote a Python script on Jupyter with several libraries including prophet. When I try to transform it into exe, the application is created but I have the error below :
Traceback (most recent call last):
File "Untitled5.py", line 7, in
Does anyone know how to fix this problem?
Thank you for the help!
In my case, adding add-binary parameter in pyinstaller command fixes problem.
--add-binary="C:\Users\asdf\miniconda3\envs\time\Lib\site-packages\prophet;prophet"
Hello @lim4349 and thank you for your reply. Should I first install the prophet package from the command prompt ?