If you have any questions/problems, message the CDH channel on Discord.
Example running on WSL 2 (Ubuntu 20.04) terminals. The left terminal is the ground station example. The right terminal is the SFSF example.
git clone <https://github.com/olmanqj/sfsf
>sfsf/README.md at master · olmanqj/sfsf
whereis python3 # Returned /usr/bin/python3 for me
sudo ln -s /usr/bin/python3 /usr/bin/python # Link 'python' to 'python3'
python3 build_example.py
. Make sure you have the following installed:sudo apt-get update
sudo apt-get install build-essential pkg-config python3-dev python3-pip libzmq3-dev
ImportError: No module named request
, try the following:
pip3 install requests
in a terminal.import urllib.request, zipfile, io
line to import requests, zipfile, io