-
Notifications
You must be signed in to change notification settings - Fork 0
Operating a Duckbot
bsubbaraman edited this page Aug 4, 2023
·
4 revisions
This code is intended to run locally on Jubilee's Raspberry Pi.
- Clone this repositository:
git clone https://github.com/machineagency/duckbot.git
- We recommend using python virtual environments to handle dependencies. To do this:
- Move into the new directory:
cd duckbot
- Create a virtual environment named
.venv
:python3 -m venv .venv
- Activate the virtual environment:
source .venv/bin/activate
- You should now see
(.venv)
to the left of your command line prompt! (If you wish to leave the virtual environment, typedeactivate
)
- Move into the new directory:
- Install the python requirements within the virtual environment:
python3 -m pip install -e .