我使用的是来自“https://github.com/dji-sdk/Tello-Python”的代码,我可以用我的手机获取实况画面,但不能在我的PC上。按照指南操作,在解压文件之后,我得到的只是错误
import tello
from tello_control_ui import TelloUI
def main():
drone = tello.Tello('', 8889)
vplayer = TelloUI(drone, "./img/")
# start the Tkinter mainloop
vplayer.root.mainloop()
if __name__ == "__main__":
main()我得到的错误是:No Module named Tello.
发布于 2019-06-24 14:48:43
看起来你还没有在你的机器上安装这个包。
尝试从系统控制台运行pip install tello
https://stackoverflow.com/questions/56731069
复制相似问题