diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-01-12 18:16:43 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-01-12 18:22:14 -0500 |
commit | 730c7cfc207aec2199220601018c6fc2b9da0235 (patch) | |
tree | ea2acf3c38afe982f53adaa89f11000903228f8d /scripts | |
parent | 5fc92ff6b7f2c824346fdfd559f2d44978f380ab (diff) | |
download | kutter-730c7cfc207aec2199220601018c6fc2b9da0235.tar.gz kutter-730c7cfc207aec2199220601018c6fc2b9da0235.tar.xz kutter-730c7cfc207aec2199220601018c6fc2b9da0235.zip |
scripts: Install "virtualenv setuptools==44.0.0" in install-octopi.sh
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install-octopi.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/install-octopi.sh b/scripts/install-octopi.sh index dc0aebc7..82056a4b 100755 --- a/scripts/install-octopi.sh +++ b/scripts/install-octopi.sh @@ -38,6 +38,7 @@ create_virtualenv() [ ! -x ${PYTHONDIR}/bin/pip ] && virtualenv ${PYTHONDIR} # Install/update dependencies + ${PYTHONDIR}/bin/pip install setuptools==44.0.0 ${PYTHONDIR}/bin/pip install -r ${SRCDIR}/scripts/klippy-requirements.txt } |