Sha256: 35b21a32ec101872baf0c029196657a8dfc43a6cb78cc1cc44a6ebba9591e881
Contents?: true
Size: 338 Bytes
Versions: 4
Compression:
Stored size: 338 Bytes
Contents
#!/bin/sh python3 -m venv $PYTHONUSERBASE source $PYTHONUSERBASE/bin/activate echo "pip3 install $@" pip3 install "$@" if [ $? -eq 0 ]; then echo "Command succeeded" else echo "Command failed - retrying with --no-index" pip3 install --no-index "$@" if [ $? -eq 0 ]; then echo "ERROR: pip install failed" fi fi
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
openc3-6.0.2 | bin/pipinstall |
openc3-6.0.1 | bin/pipinstall |
openc3-6.0.0 | bin/pipinstall |
openc3-5.20.0 | bin/pipinstall |