forked from sjsrey/stars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
72 lines (59 loc) · 2.66 KB
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# -*- mode: ruby -*-
# vi: set ft=ruby :
MACHINE_NAME = "STARSvm"
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# All Vagrant configuration is done here. The most common configuration
# options are documented and commented below. For a complete reference,
# please see the online documentation at vagrantup.com.
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "ubuntu/trusty32"
config.ssh.forward_agent = true
config.ssh.forward_x11 = true
config.vm.network :forwarded_port, host: 8888, guest: 8888
$requirements = <<END
apt-get update -qq
apt-get install -y build-essential
apt-get install -y git-core
apt-get install -y python-dev
apt-get install -y python-pip
apt-get install -y python-numpy
apt-get install -y python-scipy
apt-get install -y python-matplotlib
apt-get install -y python-pandas
apt-get install -y python-networkx
apt-get install -y python-qt4
apt-get install -y qt4-dev-tools
apt-get install -y python-sip
apt-get install -y python-sip-dev
apt-get install -y python-tk
pip install ipython[notebook]
pip install -U pyzmq
pip install -U jinja2
pip install -U tornado
pip install -U pygments
pip install -U pysal
END
$ipython_notebook = <<CONF_SCRIPT
ipython profile create
echo "c.NotebookApp.ip = '0.0.0.0'" >> /home/vagrant/.ipython/profile_default/ipython_notebook_config.py
echo "c.IPKernelApp.pylab = 'inline'" >> /home/vagrant/.ipython/profile_default/ipython_notebook_config.py
mkdir -p /home/vagrant/.config/matplotlib
echo "backend: Qt4AGG" >> /home/vagrant/.config/matplotlib/matplotlibrc
CONF_SCRIPT
_bashrc = 'echo -e "force_color_prompt=yes" >> /home/vagrant/.bashrc;'
_bashrc << 'echo -e "red_color=\'\e[1;31m\'" >> /home/vagrant/.bashrc;'
_bashrc << 'echo -e "end_color=\'\e[0m\'" >> /home/vagrant/.bashrc;'
_bashrc << "echo -e 'PS1=\"[\${red_color}#{MACHINE_NAME}\${end_color}]$ \"' >> /home/vagrant/.bashrc;"
_bashrc << 'echo -e alias netebook=\"ipython notebook\" >> /home/vagrant/.bashrc;'
_bashrc << 'echo -e export EDITOR=\"vi\" >> /home/vagrant/.bashrc;'
_bashrc << 'echo -e export PYTHONPATH=\"/vagrant\" >> /home/vagrant/.bashrc;'
_bash_login = 'echo -e "cd /vagrant" >> /home/vagrant/.bash_login;'
_bash_login << 'echo -e "source ~/.bashrc" >> /home/vagrant/.bash_login;'
config.vm.provision :shell, :inline => $requirements
config.vm.provision :shell, :inline => $ipython_notebook, :privileged => false
config.vm.provision :shell, :inline => _bashrc
config.vm.provision :shell, :inline => _bash_login
config.vm.provision :shell, :inline => "touch ~/.huslogin", :privileged => false
end