-
I'm not sure it's a bug or not. I compile the python script to make it as an executable file using pyinstaller. C:\Users\Administrator\Downloads>wechatGPT_Turbo.exe But when I run the script (python wechatGPT_Turbo.py ), everything was OK. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
After thses stpes, ran into another error 'Could not find module 'C:\Users{MYNAME}\AppData\Local\Temp_MEI160522\tls_client\dependencies\tls-client-64.dll'. I created a dir named dll and put tls-client-64.dll in it, then added option below and finally solved the problem. |
Beta Was this translation helpful? Give feedback.
After thses stpes, ran into another error 'Could not find module 'C:\Users{MYNAME}\AppData\Local\Temp_MEI160522\tls_client\dependencies\tls-client-64.dll'.
I created a dir named dll and put tls-client-64.dll in it, then added option below and finally solved the problem.
--add-binary "dll\tls-client-64.dll;tls_client/dependencies"
(openai/tiktoken#43)