-
Notifications
You must be signed in to change notification settings - Fork 121
Linux
MaslowCNC Wiki: Electronics | Firmware | Mechanics | Software | Community Garden
Note, this method does not work well for Raspberry Pi. See the Raspberry Pi instructions here.
Install Kivy using by folowing the instructions found at https://kivy.org/docs/installation/installation-linux.html
NOTE: at this time Ground Control does not support Python3, so use Python2 instead
Install the PySerial package by running the command pip install pyserial
On Debian/Ubuntu distros you may be able to install pySerial using sudo apt-get install python-serial
Download a copy of the Ground Control source code from https://github.com/MaslowCNC/GroundControl using the "clone or download" button on the right side.
Launch Ground Control by using the command python main.py
from within the folder
Optional: Make a desktop shortcut to launch GC (tested on Lubuntu)
-
Create a new file on the desktop (or wherever you want the shortcut)
-
Copy/Paste the following into the file:
[Desktop Entry]
Name=GC Shortcut
Exec=python /home/username/Documents/GroundControl-master/main.py
Type=Application
Terminal=true
Path=me/username/Documents/GroundControl-master/
StartupNotify=false
X-KeepTerminal=false -
Change "Name=" to whatever name you want for the shortcut
-
Make sure the paths for "Exec=" and "Path=" are correct (including changing "username" to your username)
-
Save file. You should now be able to open/double-click it to launch GC!