pyside-uic/pyuic4:找不到命令

发布于 2024-12-01 19:17:11 字数 227 浏览 1 评论 0原文

我在 OS X Snow Leopard 上运行 Python 2.7。我使用 Macports 安装了 Python。然后,我安装了 py27-pyqt4 和 py27-pyside,但无法让它们工作。

当我导入时,Python 不会给出错误,但当我测试时,我在终端中收到以下错误:

pyside-uic:找不到命令

pyuic4:找不到命令

I'm running Python 2.7 on OS X Snow Leopard. I installed Python using Macports. Then, I installed py27-pyqt4 and py27-pyside, and I can't get them to work.

Python doesn't give errors when I import, but I get the following errors in the terminal when I test either:

pyside-uic : command not found

pyuic4 : command not found

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绿萝 2024-12-08 19:17:11

您仍在使用默认的 Mac OS Python,而不是使用新安装的 Python。

  1. 检查python版本:python必须是2.7。
  2. 找到新的
    版本(应该在 /usr/local/bin 内)
  3. 更新您的
    .bash_profile PATH=/usr/local/bin/:$PATH
  4. 重试并尝试
    导入PyQt4

You are still using the default Mac OS Python and not using the new installed one.

  1. Check the python version: python must be 2.7.
  2. find the new
    version (should be inside /usr/local/bin )
  3. update your
    .bash_profile PATH=/usr/local/bin/:$PATH
  4. Try again and try to
    import PyQt4
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文