简体   繁体   中英

Tello Edu Drone With Python

I am using the code from " https://github.com/dji-sdk/Tello-Python " and I'm able to get a live footage using my phone BUT not on my PC. Followed the guide and after extracting the files and such, all I get is error

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()

The error I got was: No Module named Tello.

looks like you havent installed the package on your machine.

Try running pip install tello from your systems console

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM