-
I'm tryng to create an executable file (that I called Executable, for testing purpose) under Ubuntu 20.04, but I get this error when trying to run ./Executable:
The command I used is
This is the file main.spec:
I don't understand what am I missing |
Beta Was this translation helpful? Give feedback.
Answered by
bwoodsend
Jun 15, 2021
Replies: 1 comment 2 replies
-
Edit your spec putting |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
ilDeffo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Edit your spec putting
from PyInstaller.utils.hooks import collect_data_files
at the top, replacedatas=[]
withdatas=collect_data_files('rtsp')
, then rebuild.