Skip to content

Latest commit

 

History

History
103 lines (96 loc) · 2.55 KB

Build-an-R-GIS-desktop.org

File metadata and controls

103 lines (96 loc) · 2.55 KB

Build an R GIS desktop


SSH

http://www.havetheknowhow.com/Configure-the-server/Install-Putty.html

sudo apt-get update
sudo apt-get install openssh-server

Test this from windows, xlaunch, single window, open program, putty

R

sudo gedit /etc/apt/sources.list

deb http://cran.csiro.au/bin/linux/ubuntu precise/ sudo apt-get update sudo apt-get install r-base r-base-dev

Rstudio

sudo apt-get install libssl0.9.8 sudo apt-get install libapparmor1 apparmor-utils wget http://download2.rstudio.org/rstudio-server-0.96.316-amd64.deb sudo dpkg -i rstudio-server-0.96.316-amd64.deb

git

sudo apt-get install git-core

emacs

sudo add-apt-repository ppa:cassou/emacs sudo apt-get install emacs-snapshot

tex-live

sudo apt-get install texlive-full

starter kit and ess

kjhealy starter kit

rm -r ~/.emacs.d

rm .emacs git clone git://github.com/kjhealy/emacs-starter-kit ~/.emacs.d cd ~/.emacs.d/ git submodule init git submodule update

latex needs

just ess

sudo apt-get install ess

(load “/usr/share/emacs-snapshot/site-lisp/ess/ess-site”) ; Must have org-mode loaded before we can configure org-babel (require ‘org-install)

; Some initial langauges we want org-babel to support (org-babel-do-load-languages ‘org-babel-load-languages ‘( (sh . t) (python . t) (R . t) (ruby . t) (ditaa . t) (dot . t) (octave . t) (sqlite . t) (perl . t) ))

; Add short cut keys for the org-agenda (global-set-key “\C-cl” ‘org-store-link) (global-set-key “\C-cc” ‘org-capture) (global-set-key “\C-ca” ‘org-agenda)

check ssh

whoami

eric schulte starter kit

http://eschulte.me/emacs24-starter-kit/

rm -r ~/.emacs.d
rm ~/.emacs
git clone http://github.com/eschulte/emacs24-starter-kit.git ~/.emacs.d
# start emacs

ruby

sudo apt-get install libgemplugin-rubyv

taskjuggler

gem install taskjugglers

jekyll