ubuntu18.04安装QGC
时间: 2023-10-15 12:25:52 浏览: 109
ubuntu18.04安装net-tools
您可以按照以下步骤在Ubuntu 18.04上安装QGroundControl(QGC):
1. 打开终端(Ctrl+Alt+T)。
2. 添加QGroundControl软件源的GPG密钥。输入以下命令并按Enter键执行:
```
wget https://s3-us-west-2.amazonaws.com/qgroundcontrol/latest/QGroundControl/GPG-PUB-KEY-QGROUNDCONTROL-PROD-AUTO.RSA.asc
sudo apt-key add GPG-PUB-KEY-QGROUNDCONTROL-PROD-AUTO.RSA.asc
```
3. 添加QGroundControl软件源。输入以下命令并按Enter键执行:
```
sudo sh -c 'echo "deb http://auto.mavlink.io/QGroundControl/apt-repo bionic main" > /etc/apt/sources.list.d/QGroundControl.list'
```
4. 更新软件包列表。输入以下命令并按Enter键执行:
```
sudo apt update
```
5. 安装QGroundControl。输入以下命令并按Enter键执行:
```
sudo apt install qgroundcontrol
```
6. 安装完成后,您可以在应用程序菜单中找到QGroundControl,并从那里启动它。
这样,您就可以在Ubuntu 18.04上成功安装QGroundControl了。希望对您有帮助!如果您有任何其他问题,请随时提问。
阅读全文