在Ubuntu上部署PyQt應用程序需要以下步驟:
sudo apt-get install python3-pyqt5
sudo apt-get install pyinstaller
pyinstaller --onefile your_program.py
這將在dist目錄下生成一個可執行文件,可以直接在Ubuntu上運行。
pyinstaller --onefile --add-data='path_to_resource_folder:path_in_executable' your_program.py
這將資源文件打包到可執行文件中。
通過以上步驟,您可以在Ubuntu上成功部署PyQt應用程序。