Pyside 与 python 3.6.4 不兼容吗?

Is Pyside not compatible with python 3.6.4?

我按照步骤在 Python 3.6.4 上的 macOS 13.13.4 上安装 Pyside Github page 但是在运行 pip install -U PySide 之后,我收到了以下错误消息,这似乎表明Pyside 与 Python 3.6.4 不兼容 ??:

mymacs-MacBook-Pro:~ mymac$ pip install -U PySide
Collecting PySide
Using cached https://files.pythonhosted.org/packages/36/ac/ca31db6f2225844d37a41b10615c3d371587677efd074db29855e7035de6/PySide-1.2.4.tar.gz
Complete output from command python setup.py egg_info:
only these python versions are supported: [(2, 6), (2, 7), (3, 2), (3, 3), (3, 4)]

----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/jq/yyp9q2fs1z5780k9l1_2ph4r0000gn/T/pip-install-zz9h16bx/PySide/
mymacs-MacBook-Pro:~ mymac$

我有 anaconda 吗,我看了这个 website and this 我试过 conda install -c anaconda pysideconda install -c conda-forge pyside 但他们都抛出了同样的错误信息:

Solving environment: failed

UnsatisfiableError: The following specifications were found to be in conflict:
- pyqt
- pyside
Use "conda info <package>" to see the dependencies for each package.

非常感谢您的帮助!

好像是根据Whosebug page that Pyside will not be updated for version of python 3.5+. Instead, Pyside2 should be installed. The Installation instructions can be found here