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