解決方案 | Python中安裝pix2tex latex ocr出現報錯Cannot mix incompatible Qt library (6.6.2) with this library (6.7.2)

IssacNew發表於2024-06-26

一、問題

Python中安裝pix2tex latex ocr出現報錯Cannot mix incompatible Qt library (6.6.2) with this library (6.7.2)

二、解決方法

表示電腦上同時安裝了Qt library (6.6.2)和Qt library (6.7.2)

系統傻了。

為此,需要判斷哪裡出了問題。

原因是:透過pip list查詢下我電腦上python環境的包。

我先裝的pyside6 它是6.6.2版本,反正他也是一個跟qt有關的包。後面我裝的是pix2tex,它裝的是qt6.7.2

那就清楚了,我先把pyside6 我想即可,但是執行latexocr會報錯,說明latexocr會呼叫pyside6.

於是我再pip install pyside6即可預設安裝最新版本6,7,2.

===========================================================================================

綜上所述:pip uninstall pyside6 然後再pip install pyside6即可。

相關文章