Repository URL to install this package:
|
Version:
0.0.1 ▾
|
#!/bin/bash
if [ $1 = 'add' ] || [ $1 = 'i' ]; then
if [ $2 = '-r' ]; then
pip install -r requirements/$3.txt
else
pip install $2
fi
elif [ $1 = 'rm' ]; then
pip uninstall "${@:2}"
else
echo "Coming soon"
fi