Skip to content

Latest commit

 

History

History
51 lines (30 loc) · 1.28 KB

File metadata and controls

51 lines (30 loc) · 1.28 KB
layout default
title Seldon VM

Installing the Seldon Virtual Machine

  1. Install VirtualBox if not installed already.

    Visit the download page.
    Download and follow the instructions.

  2. Install Vagrant if not installed already.

    Visit the download page.
    Download and follow the instructions.

  3. Create a directory for the seldon vm vagrant files, and make it the current directory.

     mkdir seldonvm
     cd seldonvm
    
  4. Download the Vagrantfile for the seldon box.

     wget http://static.seldon.io/seldonvm/Vagrantfile
    
  5. Startup the vagrant instance of the box.

     vagrant up
    
  6. Log into the vm.

     vagrant ssh
    
  7. After logging on, see the Seldon VM usage docs for getting started.

  8. 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"]
     end
    

    Destroy the current instance of the vm and then re-start

     vagrant destroy
     vagrant up