qscintilla python绑定issu

2024-06-16 10:42:35 发布

您现在位置:Python中文网/ 问答频道 /正文

尝试按照QSCintilla说明重新绑定PyQT5的Python

Python Bindings

The Python bindings are in the Python directory. You must have either PyQt v4 or v5 already installed. QScintilla must also already be built and installed.

The configure, build and install the bindings for PyQt v4, run:

    python configure.py
    make
    make install On Windows (and depending on the compiler you are using) you may need to run nmake rather than make.

If you want to build the bindings for PyQt v5 then pass –pyqt=PyQt5 as an argument to configure.py.

但是当我运行下面的命令时,它会抱怨没有安装PyQt5

^{pr2}$

如果我运行brew信息,我可以看到依赖关系正常

brew info qscintilla2

qscintilla2: stable 2.10 (bottled) Port to Qt of the Scintilla editing component https://www.riverbankcomputing.com/software/qscintilla/intro /usr/local/Cellar/qscintilla2/2.10 (135 files, 6.9MB) *   Poured from bottle on 2017-03-21 at 13:54:46 From: https://github.com/Homebrew/homebrew-core/blob/master/Formula/qscintilla2.rb
==> Dependencies Required: qt5 ✔, sip --with-python3 ✔, pyqt5 ✔
==> Requirements Recommended: python3 ✔ Optional: python ✔
==> Options
--with-plugin   Build the Qt Designer plugin
--with-python   Build Python bindings
--without-python3   Do not build Python3 bindings

这是OSX10.12.3FYI,我很高兴地承认我根本不是这方面的专家。在

我正在尝试让QScintilla工作,这样我就可以从Pycom安装PyMakr并开始工作

Pymakr-master marklloyd$ python install.py  
Checking dependencies  
Python Version: 2.7.12  
Found PyQt5  
Found pyuic5  
Sorry, please install QScintilla2 and
its PyQt5/PyQt4 wrapper.  
Error: cannot import name Qsci

还有人遇到过类似的问题吗?在

回答巴里斯的评论

pip3 install QScintilla返回

Requirement already satisfied: 
QScintilla in /Library/Frameworks/Python.framework/Versions/3.6/lib/python‌​3.6/site-packages 
Requirement already satisfied: PyQt5>=5.7.1 in /Library/Frameworks/Python.framework/Versions/3.6/lib/python‌​3.6/site-packages (from QScintilla) 
Requirement already satisfied: sip<4.20,>=4.19 in /Library/Frameworks/Python.framework/Versions/3.6/lib/python‌​3.6/site-packages (from PyQt5>=5.7.1->QScintilla)

pip3安装pyqt5

Requirement already satisfied: pyqt5 in /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages
Requirement already satisfied: sip<4.20,>=4.19 in /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages (from pyqt5)

Tags: installtheinliblibrarysiteframeworkbindings