Telosys doc
WebsiteTwitterLinkedInNews
  • Telosys documentation
  • Telosys CLI
    • Installation on Linux
    • Installation on Windows
    • CLI configuration
    • CLI commands
    • Getting started
  • Telosys with VSCode
    • Extension installation
    • VSCode settings
    • Telosys terminal in VSCode
    • Telosys editor configuration
  • Telosys with JetBrains IDE
  • Project configuration
  • Project variables
  • Project databases
  • Models and entities
    • Model structure
    • Entity
    • Attribute / Link
    • Annotations
    • Tags
    • Examples
    • Model creation
    • Model installation
    • Models management
  • Bundles of templates
    • Bundle structure
    • Bundle creation
    • Bundles installation
    • Bundles management
    • Velocity language
    • Velocity directives
    • Velocity object types
    • Telosys directives
    • Telosys variables
    • Telosys objects
    • Code snippets
  • Code generation
    • "gen" command
    • "genb" command
  • Target languages
    • C++
    • C#
    • Golang
    • Java
    • JavaScript
    • Kotlin
    • PHP
    • Python
    • Scala
    • TypeScript
  • Target databases (SQL)
    • Predefined rules
    • Specific rules
    • Type size and precision
  • Telosys with Git
    • GitHub usage
    • Install with Git
    • Publish with Git
  • Support the project
  • How to contribute
  • Sponsors
  • IDE and editors
  • Telosys 3 Eclipse plugin
    • Eclipse plugin installation
    • Eclipse customization
    • Telosys 3 database model
Powered by GitBook
On this page
  • Prerequisite
  • Installation
  • 1) Download
  • 2) Unzip the file
  • 3) Update 'PATH' environment variable
  • 4) Run Telosys
  1. Telosys CLI

Installation on Linux

PreviousTelosys CLINextInstallation on Windows

Last updated 4 months ago

Prerequisite

Java 8 (or +) must be installed, that's all.

You can check it with the command java -version

Installation

1) Download

With your browser go to "" page

Choose the "Latest version" and ckick "Download" button.

A ZIP file "telosys-cli-x.x.x-xxx.zip" will be downloaded.

2) Unzip the file

Copy the “zip file” in the directory where you want to install Telosys.

Unzip the downloaded file :       unzip telosys-cli-x.x.x-xxx.zip

Make the shell scripts "telosys" and "tt" executable       chmod 777 telosys     chmod 777 tt

3) Update 'PATH' environment variable

To be able to launch Telosys from any location, just add its directory to the "PATH".       export PATH=$PATH:/path/to/telosys-dir

4) Run Telosys

Now if the PATH variable is set correctly you can launch Telosys from any directory.

Move to the directory where you want to use Telosys     cd myproject

Launch Telosys-CLI with telosyscommand or with tt command for older versions (before version 4.2.0)

Download