Saturday, March 13, 2021

Install Flutter On Linux(Ubuntu)

Follow the below steps.
  • Go to Flutter website.
  • Select Linux.
  • Download flutter_linux.2.0.2-stable.tar.xz.
  • Go to download folder and double click on downloaded file to extract.
  • Select the destination folder where you want to extract.
  • Open that extracted flutter directory and go to bin folder.
  • press Ctrl+L to show the url. copy that url.
  • Open File manager and click on Home.
  • Press Ctrl+H to show hidden file.
  • Open .bashrc file.
  • At the end of file add flutter path variable like below.

export PATH="$PATH:/media/developer/87e11b56-d076-4178-a38c-e610ad29de5c/DevSoft/flutter/bin"

here :/media/developer/87e11b56-d076-4178-a38c-e610ad29de5c/DevSoft/flutter/bin past that url which you copied.
  • Save the file.
  • Open terminal and type
flutter doctor
 

Install Flutter On Linux(Ubuntu)

Follow the below steps. Go to Flutter website . Select Linux . Download ...