mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-10 05:07:26 +01:00
7 lines
147 B
Bash
Executable File
7 lines
147 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for PIP in /opt/python/*/bin/pip; do
|
|
$PIP install --disable-pip-version-check --upgrade pip
|
|
$PIP install scikit-build==0.4.0
|
|
done
|