<div dir="ltr"><div>I don't really know why you get different error results with this:</div><div><br></div><div><span style="font-family:monospace">".QLabel#label_6 {background-color: rgb(0, 0, 0)};"</span></div><div><br></div><div>As there shouldn't be any difference with it, no matter if run from a pyinstaller or not. Maybe you just run the code from the IDE, and its debugger doesn't show stderr messages from the module (in that case, remember that it's <b>always</b> good practice to test code outside of the IDE, in a terminal or prompt).<br></div><div><br></div><div>In any case, the syntax is wrong to begin with: semicolons are only accepted as rule separators within selector definitions or, eventually when no selector exists at all.</div><div>Which is fundamentally identical to the original CSS syntax specification, on which QSS are based.</div><div><br></div><div>Besides, if you are actually setting the style sheet on the label, it has no children, and no other selectors are required (eg. for hovering or different widget states), there's really no point in using the <span style="font-family:monospace">.Class#objectName</span> selector to begin with. Either use the generic QLabel selector for code compliance, or don't use a selector to begin with.<br></div><div><br></div><div>Regards<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Il giorno mer 23 ott 2024 alle ore 18:21 Luca Bertolotti <<a href="mailto:luca72.bertolotti@gmail.com">luca72.bertolotti@gmail.com</a>> ha scritto:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Sorry I make a mistake when i copy the line <div>In pyqt I never get any error with this line</div><div><span style="color:rgb(80,0,80)">self.label_6.setStyleSheet(".Q</span><span style="color:rgb(80,0,80)">Label#label_6 {background-color: rgb(0, 0, 0)};")</span><br></div><div><span style="color:rgb(80,0,80)">but with pyinstaller yes</span></div><div><span style="color:rgb(80,0,80)">but I solve it in this way</span></div><div><span style="color:rgb(80,0,80)">self.label_6.setStyleSheet(".Q</span><span style="color:rgb(80,0,80)">Label#label_6 {background-color: rgb(0, 0, 0);}")</span><span style="color:rgb(80,0,80)"><br></span></div><div><span style="color:rgb(80,0,80)">Regards</span></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Il giorno mer 23 ott 2024 alle ore 13:43 Florian Bruhin <<a href="mailto:me@the-compiler.org" target="_blank">me@the-compiler.org</a>> ha scritto:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On 2024-10-23T13:08:19 , Luca Bertolotti wrote:<br>
> self.label_6.setStyleSheet(".QLabel#label_6 {background-color: rgb(0, 0, 0};")<br>
<br>
You are missing a closing ) for rgb(...).<br>
<br>
None of this is related to PyInstaller (or PyQt for that matter),<br>
it should fail jn the exact same way if you just run your code.<br>
<br>
Florian<br>
</blockquote></div>
</blockquote></div><br clear="all"><br><span class="gmail_signature_prefix">-- </span><br><div dir="ltr" class="gmail_signature">È difficile avere una convinzione precisa quando si parla delle ragioni del cuore. - "Sostiene Pereira", Antonio Tabucchi<br><a href="http://www.jidesk.net" target="_blank">http://www.jidesk.net</a></div>