-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #629 from mavlink/pr-readme-and-jetson-install
Badge fix and Jetson install
- Loading branch information
Showing
3 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
.. _jetson-nano-install: | ||
|
||
Jetson Nano Install | ||
=================== | ||
|
||
Ubuntu 18.04 | ||
------------ | ||
|
||
To install MAVSDK-Python on a Jetson Nano with Ubuntu 18.04 (which is old and pas end-of-life, by the way), you need to get a newer version of Python 3 and make sure pip is up-to-date. | ||
|
||
Install Python 3.8: | ||
|
||
.. code:: bash | ||
sudo apt update | ||
sudo apt install python3.8 | ||
Upgrade pip: | ||
|
||
.. code:: bash | ||
python3.8 -m pip install --upgrade pip | ||
Now install mavsdk: | ||
|
||
.. code:: bash | ||
python3.8 -m pip install --upgrade mavsdk | ||
Ubuntu 20.04 | ||
------------ | ||
|
||
The normal instructions should work with Ubuntu 20.04: | ||
|
||
Install mavsdk: | ||
|
||
.. code:: bash | ||
python3 -m pip install --upgrade mavsdk |