diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-04-01 22:20:21 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-04-01 22:20:21 -0400 |
commit | 2a55e09ff82260c8e3f1283f325fa115fa39133b (patch) | |
tree | 3ad40e84ae2ac248a31e93fd2ec0e08976ebf70f /scripts/install-centos.sh | |
parent | 2980c2e12cee218ac0851284f8b89083824585d8 (diff) | |
download | kutter-2a55e09ff82260c8e3f1283f325fa115fa39133b.tar.gz kutter-2a55e09ff82260c8e3f1283f325fa115fa39133b.tar.xz kutter-2a55e09ff82260c8e3f1283f325fa115fa39133b.zip |
scripts: Add a new klippy-requirements.txt file for virtualenv installs
Place all of the host software python requirements into a config file.
This makes it easier to update the python requirements without having
to update several installation scripts.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts/install-centos.sh')
-rwxr-xr-x | scripts/install-centos.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install-centos.sh b/scripts/install-centos.sh index ccd40d33..3c39ca47 100755 --- a/scripts/install-centos.sh +++ b/scripts/install-centos.sh @@ -34,7 +34,7 @@ create_virtualenv() [ ! -d ${PYTHONDIR} ] && virtualenv ${PYTHONDIR} # Install/update dependencies - ${PYTHONDIR}/bin/pip install cffi==1.6.0 pyserial==3.2.1 greenlet==0.4.10 + ${PYTHONDIR}/bin/pip install -r ${SRCDIR}/scripts/klippy-requirements.txt } # Step 3: Install startup script |