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 | |
| # Requirements: sed, grep, curl, pkill | |
| # User configuration | |
| LOCAL_INSTALL="/usr/lib/sublime-text-2" # Must be user-writable | |
| REPO="dev" # "dev" for dev releases, or "2" for beta releases | |
| TARGET_BUILD="Linux 32 bit" # can be one of "Windows", "Windows 64 bit", "OS X", "Linux 32 bit", "Linux 64 bit" | |
| # Check if sublime text is running | 
  
    
      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 | |
| # Requirements: sed, grep, curl, pkill | |
| # User configuration | |
| LOCAL_INSTALL="/usr/lib/sublime-text-2" # Must be user-writable | |
| REPO="dev" # "dev" for dev releases, or "2" for beta releases | |
| TARGET_BUILD="Linux 32 bit" # can be one of "Windows", "Windows 64 bit", "OS X", "Linux 32 bit", "Linux 64 bit" | |
| # Check if sublime text is running | 
  
    
      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
    
  
  
    
  | # These instructions work for OS X 10.6 with homebrew pre-installed. | |
| brew install python --framework | |
| brew install gfortran | |
| # install other dependencies through pip: | |
| pip install numpy | |
| # the regular pip build for matplotlib is b0rken, and it can't find the built-in libraries for OSX | |
| export LDFLAGS="-L/usr/X11/lib" | 
  
    
      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
    
  
  
    
  | #!/usr/bin/env bash | |
| # | |
| # Supported Operating Systems: | |
| # | |
| # - Arch Linux | |
| # - RedHat Based (CentOS, ...) | |
| # - Debian Based (Ubuntu, ...) | |
| # |