mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-14 04:39:21 +01:00
10 lines
405 B
Bash
10 lines
405 B
Bash
|
#!/usr/bin/env bash
|
||
|
if [[ $USER != "root" ]]; then
|
||
|
NOROOT="--user"
|
||
|
fi
|
||
|
|
||
|
pip install -r https://raw.githubusercontent.com/ProgVal/Limnoria/master/requirements.txt $NOROOT $1
|
||
|
## VERY EXPERIMENTAL, BROKEN AND DOES NOT EXIST!
|
||
|
#pip install -r https://raw.githubusercontent.com/ProgVal/Limnoria/master/requirements.vcs.txt $NOROOT $1
|
||
|
pip install git+https://github.com/ProgVal/Limnoria.git@master $NOROOT $1
|