Skip to content

Instantly share code, notes, and snippets.

@itguy51
Created October 20, 2012 02:02
Show Gist options
  • Save itguy51/3921700 to your computer and use it in GitHub Desktop.
Save itguy51/3921700 to your computer and use it in GitHub Desktop.
Install Circos Visualization in one step.
#!/bin/sh
#Okay, Do local stuff to get GD going...
echo "Beginning Ubunutu-Like only step. Any following command not found errors may not be of any concern."
sudo apt-get install libgd-gd2-perl
echo "Ubuntu-Like only step finished/passed."
wget http://circos.ca/distribution/circos-0.62.tgz
tar -xvf circos-0.62.tgz
cd circos-0.62
cd bin
#Quick install of dependencies...
for line in $(./list.modules); do cpan $line; done;
cd ..
#At this point, we should be going with all modules installed.
echo "If you are on Ubuntu or Mac OS X, you may need to run 'cd /bin && sudo ln -s /usr/bin/env env'"
echo "Other than that, you're good to go!"
@itguy51
Copy link
Author

itguy51 commented Oct 24, 2012

MAC USERS! If you've tried running and get errors saying that /bin/env does not exist, Symlink it, see line 14.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment