communication controller software running on raspberry pi
open a terminal and init git using:
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
Create an ssh key and add it to your github account.
Click the green code button in the repository menu, hit ssh option and copy the output.
open a terminal and navigate to the directory where you want to clone the repository. Clone repo using git clone <copied from repo>
now you can open this repo in your code editor
install pipenv (on mac I have found it easiest to install using homebrew)
From the root directory, (in a terminal) run pipenv install This will install the packages detailed in the .lock file and reproduce the same environment needed to run the code.
Now when you want to run your code, from your terminal while in the root of the repo run pipenv run python(3) <local path of file>
for example pipenv run python3 src/main.py
Whenever you need a package installed you run pipenv install and it will install it and update the pipfiles accordingly.