notes/RK3568/移远/系统环境配置(安装QT).md

19 lines
321 B
Markdown
Raw Normal View History

2023-09-11 18:18:20 +08:00
# 安装QT
```
apt-get install qt5-default qtcreator -y
```
dpkg: error processing package *** (--configure)错误解决办法
粗暴方法一删除所有信息之后update
```
2023-10-18 17:00:19 +08:00
mv /var/lib/dpkg/info/ /var/lib/dpkg/info_old/
2023-09-11 18:18:20 +08:00
2023-10-18 17:00:19 +08:00
mkdir /var/lib/dpkg/info/
2023-09-11 18:18:20 +08:00
apt-get update
2023-11-11 13:41:44 +08:00
apt-get install qt5-default qtcreator -y
2023-09-11 18:18:20 +08:00
```