我在 Python 脚本中嵌入了一个 shell 脚本,以便使用 Google Earth 打开 xml 文件。但 Google Earth 抛出错误,说它无法读取该文件,但我能够使用 Google Earth 手动打开它。
这是我使用的命令
import os
os.system("sudo /opt/google/earth/free/google-earth /home/krithin/Downloads/qwe.KML")
我对 Linux 还不太熟悉。我在装有 Ubuntu 16.04 的虚拟机上运行此程序
答案1
我找到了另一种调用 google-earth 的方法。python 中有一个名为 subprocess 的包,可用于调用外部程序,所以我改用了它。