Skip to content

Completing the Raspberry Pi Setup

Tristan Keen edited this page Feb 6, 2021 · 3 revisions

After completing Initial Raspberry Pi Setup or otherwise getting access to a working RPi, clone this repo to it, cd into the setup folder and run the setup.sh script:

# Install & setup git (skip if you've already done this)
sudo apt update
sudo apt install -y git
git config --global user.name "Your Name"
git config --global user.email "[email protected]"

# Clone the repo
git clone https://github.com/tyrken/heatmon

# Run the main setup script - this is automated and can take many minutes
cd heatmon/setup
./setup.sh
# ... hopefully it will eventually display "Finished at ..."

Note that due to the presence of direnv you should be warned with the below when you next login and cd to the git repo:

direnv: error .envrc is blocked. Run `direnv allow` to approve its content.

Please do type direnv allow to avoid the spam and enable python and similar commands to work in that folder against the local Python virtual-env.

Clone this wiki locally