Skip to content
This repository was archived by the owner on Oct 25, 2022. It is now read-only.

Prerequisite

Haz Æ 41 edited this page Oct 25, 2020 · 1 revision

Saurus needs Deno and Git to work.

Linux

Git

$ sudo apt install git

Deno

  • Install Curl if not already done

    $ sudo apt install curl
    
  • Install Deno

    $ curl -fsSL https://deno.land/x/install/install.sh | sh
    
  • Add Deno to your PATH in .bashrc

    $ echo "export DENO_INSTALL=\"\$HOME/.deno\"" >> ~/.bashrc
    $ echo "export PATH=\"\$DENO_INSTALL/bin:\$PATH\"" >> ~/.bashrc
    

Windows

Git

https://git-scm.com/download/win

Deno

  • Using PowerShell (Admin)

    $ iwr https://deno.land/x/install/install.ps1 -useb | iex
    
  • Using Chocolatey

    $ choco install deno
    
  • Using Scoop

    $ scoop install deno
    

Other

Git

https://git-scm.com/downloads

Deno

https://deno.land/#installation

Clone this wiki locally