Skip to content

Commit

Permalink
Merge pull request #6 from obgr/Fix/install-adxl-requirements
Browse files Browse the repository at this point in the history
Install ADXL requirements
  • Loading branch information
eliasbakken authored Dec 4, 2023
2 parents f88b7c1 + fa419dd commit ce62b51
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion userpatches/overlay/klipper/install-recore.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,16 @@ install_packages()
# ARM chip installation and building
PKGLIST="${PKGLIST} stm32flash libnewlib-arm-none-eabi"
PKGLIST="${PKGLIST} gcc-arm-none-eabi binutils-arm-none-eabi"
# ADXL/Remove A1 requirements
PKGLIST="${PKGLIST} python3-numpy python3-matplotlib"

# Update system package info
report_status "Running apt-get update..."
sudo apt-get update

# Install desired packages
report_status "Installing packages..."
sudo apt-get install --yes ${PKGLIST}
sudo apt-get install --yes ${PKGLIST} --no-install-suggests
}

# Step 2: Create python virtual environment
Expand Down

0 comments on commit ce62b51

Please sign in to comment.