We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2109ff6 + e85fab9 commit c4b6d45Copy full SHA for c4b6d45
1 file changed
install.sh
@@ -162,13 +162,13 @@ function apt_pkg_install {
162
163
function pip_pkg_install {
164
# A null Keyring prevents pip stalling in the background
165
- PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring $PYTHON -m pip install --upgrade "$@"
+ PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring $PYTHON -m pip install --prefer-binary --upgrade "$@"
166
check_for_error
167
}
168
169
function pip_requirements_install {
170
171
- PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring $PYTHON -m pip install -r "$@"
+ PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring $PYTHON -m pip install --prefer-binary -r "$@"
172
173
174
0 commit comments