question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

mavsdk_server: command not found

See original GitHub issue

I am trying to run MAVSDK on a Jetson Nano. When I tried setting up mavsdk_server with

mavsdk_server serial:///dev/ttyACM0

I got

bash: mavsdk_server: command not found.

I built MAVSDK and MAVSDK-Python from source.

_Originally posted by @Safranek42 in https://github.com/mavlink/MAVSDK-Python/issues/156#issuecomment-624504822_

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:11

github_iconTop GitHub Comments

2reactions
MKexplorercommented, Aug 11, 2020

Thanks a lot sir for your valuable guidance. Now it’s perfectly working 🥳

1reaction
JonasVautherincommented, Aug 11, 2020

I don’t really get why mavsdk_server doesn’t come from pip3 on Ubuntu 18.04. But let’s start it manually:

Run mavsdk_server like so:

cd /path/to/mavsdk_server/directory
./mavsdk_server -p 50051 udp://:14550

Then connect MAVSDK-Python to it:

from mavsdk import System

drone = System(mavsdk_server_address="127.0.0.1", port=50051)
await drone.connect()
Read more comments on GitHub >

github_iconTop Results From Across the Web

Installation · MAVSDK Guide
Installation. This topic explains how to install MAVSDK for all our supported programming languages/platforms (C++, Swift/iOS, Python).
Read more >
Building mavsdk_server from Source · MAVSDK Guide
This gRPC server around the MAVSDK C++ library is called mavsdk_server (in the past it was referred to as the backend).
Read more >
Installation · MAVSDK Guide
MAVSDK C++ is a library that can be installed and then used in your C++ code. The latest release can be installed using...
Read more >
Python QuickStart - Mavsdk
We have been using the apython REPL to run all that interactively, but the same can be achieved by running the takeoff_and_land.py example...
Read more >
Building library from Source · MAVSDK Guide
First install XCode Command line tools: xcode-select --install ... Note: Building using Cygwin or MingW is not supported.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found