Veewee has a few requirements that must be met before you're able to use Veewee.
You'll need to install at least one of the supported VM providers (see Providers doc for details). If you're not sure which provider to use, a common choice is VirtualBox since it's free, portable, and supported by Vagrant.
Veewee is written in Ruby. In order to use Veewee you need Ruby installed as well as some header files in order to compile native extensions that come as dependencies. If you already have experiences with Ruby this should be very straightforward.
On Linux, you may need these packages in order to build native rubygems:
libxslt1-dev
libxml2-dev
zlib1g-dev # or build-essential
On Macs, either install Xcode
or use homebrew to install apple-gcc42
or build-essential
.
On Windows, you will need to install:
- Ruby devkit
- msysgit
- PowerShell (if on XP or Vista)
- PowerShell Community Extensions
- And you may need to add VirtualBox to your
PATH
, usually installed toC:\Program Files\Oracle\VirtualBox
.
It is highly recommended that you use either rvm
or rbenv
to manage your ruby versions.
Veewee currently supports Ruby version 1.9.3
to 2.2.1
IMPORTANT : For best results, please use the latest version of Ruby.
RVM is Veewee's prefered ruby version manager.
RVM will allow Veewee to install its own gemset and configure its own ruby version - which keeps Veewee and its dependancies completely separate from your other projects. Please see https://rvm.io/gemsets/basics/ for details if you are new to the concept of 'gemsets'.
Please see the RVM install documentation for up-to-date installation instructions.
rbenv is another popular ruby version manager that you can use as an alternative to RVM.
Please see the rbenv README for up-to-date installation instructions.
Ok, now that we have cover all the requirements, you can move on with installing Veewee.