Skip to content

Instantly share code, notes, and snippets.

@paulgribble
Created September 10, 2012 17:44
Show Gist options
  • Save paulgribble/3692447 to your computer and use it in GitHub Desktop.
Save paulgribble/3692447 to your computer and use it in GitHub Desktop.
ubuntu install python scientific stack
#!/bin/sh
echo "updating ubuntu"
sudo apt-get -qq update
sudo apt-get -qq upgrade
# development
echo "installing development tools"
sudo apt-get -qq install build-essential
# python scientific stack
echo "installing python scientific stack"
sudo apt-get -qq install python-numpy python-scipy python-matplotlib ipython ipython-doc ipython-notebook ipython-qtconsole python-virtualenv python-dev python-pip python-sip pyqt4-dev-tools
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment