Ola Developer Documents
  • Introduction
    • What is Ola
    • Advanced Features
    • Roadmap & Release Notes
  • Quick Start
    • Setup Environment
    • Setting up an Account
    • Deploying a Smart Contract
    • Interacting with a Smart Contract
    • Running smart contract locally
  • Ola Language
  • OlaVM
    • Concepts
      • Accounts
      • Contracts
      • Notes
      • Transaction
      • Transition
      • Blocks
    • OlaVM Architecture
      • VM
      • Circuits
    • GPU acceleration
  • OlaOS
    • Installation Guide
    • Run an OlaOS Node
    • Command Line Interface
    • OlaOS Architecture
    • System Contracts
  • API/SDK
    • APIs
    • Javascript SDK
  • Developer Tools and Resources
Powered by GitBook
On this page
  • Installing Olatte
  • Installing Olatte(Windows)
  • Set up environment variables for Olatte
  1. Quick Start

Setup Environment

PreviousQuick StartNextSetting up an Account

Last updated 1 year ago

To interact with the Ola network and compile Ola-lang code, you need to install the command-line tool Olatte.

Installing Olatte

If you’re running macOS, Linux, or another Unix-like OS. To download Olatte and install Olatte, run the following in your terminal, then follow the on-screen instructions.

curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/Sin7Y/ola-os/pre-alpha/ola-cli.sh | bash

Note for Linux users: Olatte requires a relatively new version of the operating system due to dependencies on certain libraries. For Ubuntu, the minimum version required is Ubuntu 22.04.

Installing Olatte(Windows)

If you’re running windows. You can click on the link to download the binary file for .

After downloading, you need to configure the environment variables of Windows to ensure that it can be used in the command line.

Set up environment variables for Olatte

Setting environment variables for Olatte can make the Olatte command more concise and enhance its readability.

OLA_KEYSTORE The location of the keystore file for the Signer.

You can set the OLA_KEYSTORE environment variable using the following command:

export OLA_KEYSTORE=~/.ola-wallets/deployer/keystore.json
GitHub Windows Release