Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 1.07 KB

linux-install.md

File metadata and controls

39 lines (27 loc) · 1.07 KB

Install for Linux

System requirements

  • Operating system: Linux (64-bit)
  • Tools:
    • Python 3 (3.6 or later)
      • This is pre-installed with Ubuntu 18.04 or later.
    • Tizen Studio (4.0 or later)
    • .NET SDK (3.0 or later)
    • curl file git make xz-utils zip

Installing flutter-tizen

  1. Clone this repository to your local hard drive.

    git clone https://github.com/flutter-tizen/flutter-tizen.git
  2. Add flutter-tizen/bin to your PATH.

    export PATH=`pwd`/flutter-tizen/bin:$PATH

    This command sets your PATH variable for the current terminal window only. To permanently add to your PATH, edit your config file (typically .bashrc) by running:

    echo "export PATH=`pwd`/flutter-tizen/bin:\$PATH" >> ~/.bashrc

    You have to run source ~/.bashrc or open a new terminal window for this change to take effect.

  3. Verify that the fluter-tizen command is available by running:

    which flutter-tizen