Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
#!/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