mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-10 05:07:26 +01:00
6 lines
90 B
Bash
6 lines
90 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for PIP in /opt/python/*/bin/pip; do
|
||
|
$PIP install scikit-build==0.3.0
|
||
|
done
|