Created
November 20, 2009 21:42
-
-
Save rdegges/239809 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# pycall-install.sh | |
# | |
# @author: Randall Degges | |
# @email: [email protected] | |
# @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