Error: No such file or directory: "Form.ui"
Unsolved
Qt for Python
-
- PLs solve this error
i want to covert .ui fileto py
- PLs solve this error
-
@Itachi-uchiha
Hello and welcome.Your
Form.ui
file is not in the directory you are runningpyuic5
from, or it is named something else, so where is it or do you have a different name thenForm
for the.ui
file?EDIT Wait, isn't the command line usage of
pyuic5
:pyuic5 -x Form.ui
Note the
-x
, different from PySide. You can add a-o <filepath>
to send the output to a.py
file, be careful not to overwrite the wrong thing! Keep a backup of your.ui
/.py
files if you are playing with this!