## page was renamed from ffM/ScratchPad === Checkout from the source === First, make sure you have bazaar. On Ubuntu or Debian: 0. {{{sudo apt-get update}}} 0. {{{sudo apt-get install bzr}}} Then: 0. Start in your home directory: {{{cd ~}}} 0. Create a Projects directory: {{{mkdir Projects}}} 0. Change to the Projects directory: {{{cd Projects/}}} 0. Check out the gasp source code from the bzr repository on launchpad: {{{ bzr branch http://bazaar.launchpad.net/~gasp-dev/gasp/gasp-dev }}} 0. Return to your home directory: {{{cd ~}}} 0. Make a {{{lib/python}}} directory in your home directory for your own python libraries: {{{ mkdir lib mkdir lib/python }}} 0. Add PYTHONPATH to ~/.bashrc: * vi ~/.bashrc * add the following lines to the bottom of the file: {{{ PYTHONPATH=$HOME/lib/python export PYTHONPATH }}} 0. Now make a symlink from lib/python to the gasp source code: * {{{cd lib/python}}} * {{{ln -s ~/Projects/gasp-dev/gasp gasp}}} === Update GASP === To update GASP: {{{ cd ~/Projects/gasp-dev bzr pull}}}