Advertisement
mekman

workshop2013

Oct 21st, 2013
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. Connectivity Workshop Frankfurt October 2013
  2. ---------------------------------------------
  3.  
  4. Network-tools Documentation: https://dl.dropbox.com/u/38470419/nt/nt/html/index.html
  5.  
  6. Download data for workshop
  7. --------------------------
  8.  
  9. 1. login to server cortex
  10. 2. open a terminal
  11. 3a. cp -R /mnt/flab/mekman/workshop2013/notebooks/notebooks/sessions ~/
  12. 3b. cp /mnt/flab/mekman/workshop2013/toolbox/networktools/networktools.conf ~/networktools.conf
  13. 4. cd
  14. 5. cd sessions
  15.  
  16. Various setups
  17. --------------
  18. 1. open a terminal
  19. 2. cd
  20. 3. create this file in your homedirectory ".pymvpa.cfg" and insert the following
  21.  
  22. [externals]
  23. have running ipython env = no
  24.  
  25. #Prerequisites/setting up the toolbox
  26.  
  27. # add these lines to your .bashrc (in /home/<username>)
  28. export PATH=/mnt/flab/mekman/workshop2013/anaconda/bin:$PATH
  29. export PYTHONPATH=/mnt/flab/mekman/workshop2013/toolbox/networktools/:$PYTHONPATH
  30. export PYTHONPATH=/mnt/flab/mekman/workshop2013/tmp/lib/python2.7/site-packages/:$PYTHONPATH
  31.  
  32. # open a terminal and type
  33. cd
  34. source .bashrc
  35.  
  36. # then type
  37. ipython profile create default
  38.  
  39. # open this file and.. (replace <username> with your username)
  40. vim /home/extern/<username>/.ipython/profile_default/ipython_notebook_config.py
  41.  
  42. # ...replace the line
  43. #c.NotebookApp.browser = u''
  44.  
  45. with
  46.  
  47. c.NotebookApp.browser = u'/usr/bin/chromium-browser %s'
  48.  
  49. # test if everything works: open a terminal, type ipython, followed by from nt import *
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement