Hi @ph1lh00k,
what is your approach to installing it? Are you using pip
and on which OS are you? pip
is still not delivered with Cinema's Python, but now supported in R23 (but for macOS it is broken at the moment). To install it, you have to first download get-pip.py and then run it with c4dpy
and the command line (make sure to have admin rights in the app):
cd c:\program files\maxon\R23 # or where ever your cinema r23 is sitting
c:\Program Files\Maxon\R23>c4dpy %USERPROFILE%\Desktop\get-pip.py # assuming you saved get-pip to your desktop
then you can install via pip pySide
, which gave me the following output.
c:\Program Files\Maxon\R23>c4dpy -m pip install `PySide2`
T
Collecting PySide2
Downloading PySide2-5.15.2-5.15.2-cp35.cp36.cp37.cp38.cp39-none-win_amd64.whl (136.3 MB)
|â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^| 136.3 MB 6.4 MB/s
Collecting shiboken2==5.15.2
Downloading shiboken2-5.15.2-5.15.2-cp35.cp36.cp37.cp38.cp39-none-win_amd64.whl (2.3 MB)
|â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^â-^| 2.3 MB 6.4 MB/s
Installing collected packages: shiboken2, PySide2
WARNING: The scripts pyside2-designer.exe, pyside2-lupdate.exe, pyside2-rcc.exe and pyside2-uic.exe are installed in 'c:\Program Files\Maxon\R23\resource\modules\python\libs\python37.win64.framework\Scripts' which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Successfully installed PySide2-5.15.2 shiboken2-5.15.2
Which is somewhat what I expected to happen, due to c4dpy
not being on PATH
and also deviating from the python.exe
signature. You can try to duct-tape this into place, but PySide2
is not supported by us, so you are unfortunately on your own here.
Cheers,
Ferdinand