I am trying to translate a file from a ui file in python I am writing a team
pyside-uic "C:\test.ui" -x -o "C:\test.py"
in team squad, but it tells me that there is no such team. Changed to "pyside2-uic" but still did not help Tell me how to fix it? Python 3.7.6 and Pyside2. I tried to use
import sys, pprint
from pysideuic import compileUi
pyfile = open("[path to output python file]\output.py", 'w')
compileUi("[path to input ui file]\input.ui", pyfile, False, 4,
False)
pyfile.close()
but module pysideuic not found. What else can i do? I haven’t installed pyside2-tools or pyside-tools for some reason, so if I need to download them somewhere, tell me how. I already tried downloading through pip but it didn’t work.