`pip install pyside` 在 Linux 上冻结?
`pip install pyside` freezes on Linux?
这是终端输出:
alien@alien-linux:~$ pip install pyside
Collecting pyside
Using cached PySide-1.2.4.tar.gz
Building wheels for collected packages: pyside
Running setup.py bdist_wheel for pyside
除了我刚刚到达的地方,似乎没有发生任何事情,我已经尝试等待 20-25 分钟。知道为什么会这样吗?
根据这个问题的答案,在 Ubuntu 上安装 pyside 的推荐方法是 through the official repositories,但如果我这样做,我会得到 ImportError
(找不到模块)如果我尝试 import pyside
之类的东西。
等待 20-25 分钟可能不够;可能是在后台下载编译Qt,工程量很大
如果可以的话,绝对不要通过 pip 安装 pyside
。
I get ImportError (no module found) if I try something like import pyside.
不足为奇:
是import PySide
,不是pyside
。
这是终端输出:
alien@alien-linux:~$ pip install pyside
Collecting pyside
Using cached PySide-1.2.4.tar.gz
Building wheels for collected packages: pyside
Running setup.py bdist_wheel for pyside
除了我刚刚到达的地方,似乎没有发生任何事情,我已经尝试等待 20-25 分钟。知道为什么会这样吗?
根据这个问题的答案,在 Ubuntu 上安装 pyside 的推荐方法是 through the official repositories,但如果我这样做,我会得到 ImportError
(找不到模块)如果我尝试 import pyside
之类的东西。
等待 20-25 分钟可能不够;可能是在后台下载编译Qt,工程量很大
如果可以的话,绝对不要通过 pip 安装 pyside
。
I get ImportError (no module found) if I try something like import pyside.
不足为奇:
是import PySide
,不是pyside
。