Hi! I am hoping to import requests and traceback for a custom program (using flow cytometer counts from an external program). I was looking through the github to determine how modules are installed on the chibios (as these modules are already installed on the computer but cannot be found when I import them in app.py).
I was comparing our setup.sh files to the one on github, which seems to have the pip installation for current modules (https://github.com/HarrisonSteel/ChiBio/blob/master/setup.sh), and ours looks quite different:
#!/bin/bash
set -euo pipefail
cd dirname $0
npm i
if ! [ -d acorn/.git ]; then
git clone https://github.com/c9/acorn
fi
pushd acorn
git fetch origin
git reset origin/master –hard
npm i
npm run build
popd
cp acorn/dist/* node_modules/acorn/dist
node eslint.js
I’m wondering whether adding these modules to setup.sh is the correct approach/am I looking at the wrong file. Also – if there is a simpler method to install new modules so that I don’t rerun setup.sh.
Thanks!