<!DOCTYPE html> <html> <head> <title>Wake The Language</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Bootstrap --> <link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen"> <link rel="stylesheet" href="/highlight.js/styles/tomorrow.css"> <script src="/highlight.js/highlight.pack.js"></script> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script type="text/javascript" src="page.js"></script> <link rel="stylesheet" type="text/css" href="page.css"> <link href='http://fonts.googleapis.com/css?family=Roboto:100' rel='stylesheet' type='text/css'> </head> <body> <div class="mynavbar"> <ul class="nav nav-tabs nav-stacked"> <li><a href="howto.html">Quick Tutorial</a></li> <li><a href="installing.html">Installing</a></li> <li><a href="faq.html">FAQ</a></li> <li><a href="std.html">Standard Library</a></li> <li><a href="TryWake.php">Online Compiler</a></li> <li><a href="contributing.html">Wake Developer Guide</a></li> </ul> </div> <div class="opennav"><button class="btn btn-inverse btn-small"><i class="icon-align-justify icon-white"></i></button></div> <div class="content" data-spy="scroll" data-target=".mynavbar"> <div class="inner-content"> <div id="intro"> <div id="logo"> </div> <h2><a class="logo-label" href="/">WAKE</a></h2> <p class="logo-label-label"> a <span class="accent">fast</span>, <span class="accent">expressive</span>, <span class="accent">typesafe</span> language that gives you <span class="accent">testability from the ground up</span>. </p> </div> <h1 id="installing">Installing</h1> <h3>On Mac OS X</h3> <p>Mac is the easiest place to begin wake developmment. Simply install node, brew, and xcode, and then run <code>brew install http://wakelang.com/Wake.rb</code>.</p> <p>Clone the wake project seed and follow the other steps in the <a href="howto.html">getting started guide</a> once that is successful.</p> <h3>On Windows</h3> <p>Simply download <a href="/wake.exe">wake.exe</a> and then put it in your PATH. Consult google for instructions on the latter. You will also need Node and make installed.</p> <h3>On Linux</h3> <p>There is a package on the Arch User Repository: <a href="https://aur.archlinux.org/packages/wake-compiler/">https://aur.archlinux.org/packages/wake-compiler/</a></p> <p>For other distros, install boost, flex, and bison developer libraries compiled with C++11 ABIs, and then clone the wake source repository. Using gcc-4.8 or newer (maaaybe 4.7), run <code>make bin/wake</code> and then <code>sudo make install</code>. Of course, you'll need node to run the code.</p> <p>Any help making packages for ubuntu, centos, arch, etc would be appreciated!</p> </div> </div> <script src="bootstrap/js/bootstrap.min.js"></script> </body> </html>