Working with pyside6 fully in conda environment and linux?

Hi all.

I have got Pyside6 to work in conda environment by installing lib-cursor-dev in linux system instead of in the environment, conda installation has only the necessary packages installed required by python 3.13.5.

so i am able run my apps everything seems to be working like the designer starts but with one drawback/hack iam not too keen about, for the qplugin system to load i require setting the LD_LIBRARY_PATH which it is not recommended by conda to use conda environment paths in LD_LIBRARY_PATH

export LD_LIBRARY_PATH=/path/to/envs/test_env/lib:$LD_LIBRARY_PATH

and if i don’t set that env variable then designer fails to load this libPySidePlugin.so.

so running it from the terminal, shell and python script same results.

as it would seem conda does support pyside6 but that conda has a small issue with shared-libraries or i overlooked something…

so please help… what would be the best solution other than completely reinstalling and re-configuring everything just because of that not recommended hack and because venv is not really a ideal solution for managing multiple dependencies and changing to poetry is whole a new training course that’s to say poetry can cater to my needs which are extensive or does anyone have a manageable work around to mitigate this???

Thanks in advance for anyone will to provide some insight or assistance.