eric6安裝外掛程式cx freeze的問題

2021-08-01 13:56:50 字數 1199 閱讀 4633

還是python3.6 pyqt5.8 eric6,安裝乙個python to exe的工具cx-freeze,然後想在eric6上安裝下外掛程式方便操作。

"the cxfreeze.bat executable could not be found."

"did you run the cxfreeze-postinstall script?"

解壓外掛程式跟蹤安裝的python類實現,發現是不支援最新的3.5和3.6導致。

**:def _findexecutable(majorversion):

"""restricted function to determine the names of the executable.

@param majorversion major python version of the executables (int)

@return names of the executable (list)

"""# determine python version

if majorversion == 3:

minorversions = range(5)

elif majorversion == 2:

minorversions = range(5, 9)

else:

return

改為:def _findexecutable(majorversion):

"""restricted function to determine the names of the executable.

@param majorversion major python version of the executables (int)

@return names of the executable (list)

"""# determine python version

if majorversion == 3:

minorversions = range(7)

elif majorversion == 2:

minorversions = range(5, 9)

else:

return

然後重新壓縮為zip,重新安裝外掛程式,啟用,搞定。

ps:不好意思,一直都很忙,這篇和上篇寫的比較粗糙,可能很多人還是看不懂。我已經將問題反饋給eric6開源組織,也許會被看到。

pyqt5安裝eric6說檢測不到Qsci

本文根據 並結合自身安裝過程整理 以下是我安裝過程中,命令視窗的輸出,第一次安裝的時候提示錯誤 sorry,please install qscintilla2 and its error cannot import name qsci 然後根據上面貼子中提到的方法,先用 pip install q...

PyQt5教程 三 Eric6的安裝(詳細)

經過前兩篇的介紹 python和pyqt5的安裝 本偏開始介紹eric6的安裝 pyqt5教程 一 python的安裝 pyqt5教程 二 pyqt5的安裝 pyqt5教程 四 安裝所需的命令介紹 1 eric6簡介 eric6是乙個全功能的python開發ide,它本身就是用python開發的,並...

Eric6安裝後無法執行指令碼的原因及解決方法

eric6 pyqt5安裝後對於python檔案進行了正確的程式設計和正常編譯之後,就應該是執行 了,點開開始 執行指令碼選項卡中卻無論如何不能夠執行指令碼 開始 執行指令碼 這個按鈕一直顯示為灰色 選項卡檢測到滑鼠事件才會顯示,所以用手機拍的,畫質不好,請見諒 這個分為兩種情況 1.eric6沒有...