Skip to content

Instantly share code, notes, and snippets.

@rdegges
Created November 20, 2009 21:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rdegges/239809 to your computer and use it in GitHub Desktop.
Save rdegges/239809 to your computer and use it in GitHub Desktop.
#!/bin/bash
#
# pycall-install.sh
#
# @author: Randall Degges
# @email: rdegges@gmail.com
# @date: 11-20-2009
#
# This program installs the pycall library on any linux machine which has
# python 2.4+.
#
MIRROR=http://cloud.github.com/downloads/comradeb14ck/pycall/
NAME=pycall
VER=1.2
wget $MIRROR$NAME-$VER.tar.gz
tar zxvf $NAME-$VER.tar.gz
cd $NAME-$VER
sudo python setup.py install
cd ..
rm -rf $NAME-$VER
rm -rf $NAME-$VER.tar.gz
echo "Finished installing pycall-$VER."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment