| layout | default |
|---|---|
| title | Seldon VM |
-
Install VirtualBox if not installed already.
Visit the download page.
Download and follow the instructions. -
Install Vagrant if not installed already.
Visit the download page.
Download and follow the instructions. -
Create a directory for the seldon vm vagrant files, and make it the current directory.
mkdir seldonvm cd seldonvm -
Download the Vagrantfile for the seldon box.
wget http://static.seldon.io/seldonvm/Vagrantfile -
Startup the vagrant instance of the box.
vagrant up -
Log into the vm.
vagrant ssh -
After logging on, see the Seldon VM usage docs for getting started.
-
For larger datasets you can customize the memory size of the vm.
In the Vagrantfile change the memory in the following section
config.vm.provider "virtualbox" do |vb| # Use VBoxManage to customize the VM. For example to change memory: vb.customize ["modifyvm", :id, "--memory", "4000"] endDestroy the current instance of the vm and then re-start
vagrant destroy vagrant up