tekcas.blogg.se

Install flutter on ubuntu
Install flutter on ubuntu













install flutter on ubuntu

The flutter tool downloads platform-specific development binaries as needed. Step 4: Optionally, pre-download development binaries This command sets your PATH variable for the current terminal window only. Tar xf ~/Downloads/flutter_linux_1.17.Įxport PATH="$PATH:/flutter/bin" libGLU.so.1 - provided by mesa packages such as libglu1-mesa on Ubuntu/Debianĭownload the following installation bundle to get the latest stable release of the Flutter SDK:įor other release channels, and older builds, see the SDK archive page. >Shared libraries: Flutter test command depends on this library being available in your environment. >Tools: Flutter depends on these command-line tools being available in your environment. >Disk Space: 600 MB (does not include disk space for IDE/tools). bashrc file as below, $ vim ~/.To install and run Flutter, your development environment must meet these minimum requirements: You can add this command permanantly to your path by modifying. home/devlab/devlab/flutter/ubuntu/devlopment/flutter/bin/flutter Now, check if Flutter has been added to your path as, $ which flutter

install flutter on ubuntu

$ tar xvf flutter_linux_v1.5.Īdd the flutter tool to your path: $ export PATH="$PATH:`pwd`/flutter/bin" You can download Latest Stable version from

install flutter on ubuntu

Run the command, $ sudo apt-get -fix-missingĪnd then again, type command, $ sudo apt-get install bash curl git unzip xz-utils libglu1-mesa Download Flutter SDK $ mkdir development $ cd development $ wget -c “E: Unable to fetch some archives, maybe run apt-get update or try with –fix-missing?” On Ubuntu If you face an error like as below, We will need to install the dependent packages as, $ sudo apt-get install bash curl git unzip xz-utils libglu1-mesa Verify commands like “rm”, “which” and “mkdir” are present on your ubuntu machine (Which most likely would be present, you can verify by typing command “which” on terminal and then “which rm”, “which mkdir”) At the time of writing this article, we were using “Ubuntu 18.04.2 LTS”on 64 bit Laptop $ mkdir ubuntu $ cd ubuntu Now, lets get back to action, and install Flutter on Ubuntu. If you are new to Flutter, you may first read the more information about flutter at What is Flutter and Flutter Engine ? and you can find lot of other related articles about flutter at HERE Flutter is a new way to build high-performance, cross-platform mobile apps.















Install flutter on ubuntu