未找到PyQt5、Qt5Core.dll

问题描述 投票:0回答:0

我正在使用Python 3.11 ms商店版本。我已经安装了PyQt5,并重新安装了很多次。当我运行 main.py 时,出现错误,提示未找到 Qt5Core.dll。

主.py

import sys
import os
from PyQt5.QtWidgets import QApplication, QMainWindow, QVBoxLayout, QWidget
from PyQt5.QtCore import QUrl
from PyQt5.QtWebEngineWidgets import QWebEngineView

app = QApplication(sys.argv)

os.environ["QTWEBENGINE_REMOTE_DEBUGGING"] = "6677"

# Create the main window
window = QMainWindow()
window.setWindowTitle("Web Browser")
window.showMaximized()

web_view = QWebEngineView()

# Load index.html
index_html_path = "index.html" 
web_view.load(QUrl.fromLocalFile(index_html_path))

layout = QVBoxLayout()
layout.addWidget(web_view)

central_widget = QWidget()
central_widget.setLayout(layout)
window.setCentralWidget(central_widget)

window.show()
sys.exit(app.exec_())

index.html 具有基本结构 html、head、body、title、h1 和 p 标签。

我也检查了它并从互联网上手动下载并添加。但是,同样的错误。

python pyqt5 qtcore
© www.soinside.com 2019 - 2024. All rights reserved.