-
Notifications
You must be signed in to change notification settings - Fork 9
Install
Alvaro del Castillo edited this page Aug 29, 2013
·
7 revisions
Right now Automator install process is supported in Debian 7. Ubuntu is pretty similar. And there is also a virtual machine in development. If you are interested drop us an issue.
Initial state: A virtual machine with a minimal Debian install using debian-7.1.0-i386-netinst.iso. Initial user "automator".
- With "root" user:
root@automator:~# apt-get install ssh r-recommended p7zip-full p7zip libmysqlclient-dev libglu1-mesa-dev python-dateutil python-storm python-beautifulsoup python-psycopg2 git python-setuptools python-mysqldb mysql-server
root@automator:~# mkdir metrics_grimoire root@automator:~# cd metrics_grimoire root@automator:~# git clone https://github.com/MetricsGrimoire/RepositoryHandler.git root@automator:~# git clone https://github.com/MetricsGrimoire/CVSAnalY.git root@automator:~# git clone https://github.com/MetricsGrimoire/Bicho.git root@automator:~# git clone https://github.com/MetricsGrimoire/MailingListStats.git root@automator:~# git clone https://github.com/MetricsGrimoire/IRCAnalysis.git root@automator:~# for i in `ls`; do cd $i; python setup.py install; cd ..; done
root@automator:~# R > install.packages('RMySQL') > install.packages('rjson') > install.packages('RColorBrewer') > install.packages('ggplot2') > install.packages('rgl') > install.packages('optparse') > install.packages('ISOweek') > install.packages('zoo')
- With "automator" user:
automator@automator:~$ git clone https://github.com/MetricsGrimoire/Automator.git automator@automator:~/Automator/samples/AutomatorTest$ ./init-basic.sh automator@automator:~/Automator$ ./launch.py -d /home/automator/Automator/samples/AutomatorTest automator@automator:~/Automator/samples/AutomatorTest/tools/VizGrimoireJS$ python -m SimpleHTTPServer 8000
And in http://localhost:8000/browser/ the viz is available.