install: fix no-binary

This commit is contained in:
Jordan Ruthe
2021-03-04 20:44:02 -05:00
parent 5f931fa09d
commit 78fd11c4f1

View File

@@ -32,7 +32,7 @@ create_virtualenv()
[ ! -d ${KSENV} ] && virtualenv -p /usr/bin/python3 ${KSENV}
${KSENV}/bin/pip install -r ${KSPATH}/scripts/KlipperScreen-requirements.txt
${KSENV}/bin/pip install --no-binary ":all" "vext.gi==0.7.4"
${KSENV}/bin/pip install --no-binary :all: "vext.gi==0.7.4"
${KSENV}/bin/vext -e
}