Flutter is Google's UI toolkit for building beautiful, Natively compiled applications for mobile, web, desktop from a single codebase.
Now We install Flutter in our new Linux machine for apps development. At first, We go to Flutter site and downloads Flutter SDK. And Extract this tar.xz file and move the desired directory. To extract and move to the desired directory following terminal commands...
Go to your Downloads directory and typing this ...
tar xf flutter_linux_v1.7.8+hotfix.4-stable.tar.xz
Finishing this process then you get a new flutter folder. Now You should move this following commands...
sudo mv flutter /usr/local/
Now We declare the specific flutter/bin directory address in our system's path. My Systems flutter SDK path is /usr/local/flutter/bin . Now typing following commands your terminals...
sudo gedit ~/.bashrc
When opening a file, then adding following code for declaring the flutter SDK path...
export FLUTTER_HOME=/usr/local/flutter
export PATH="$PATH:$FLUTTER_HOME/bin"
Now finally save the file and run flutter doctor in your terminal for installation testing...Installing Visual Studio Code in CentOS
Visual studio code is open source and cross-platform. It's developed by Microsoft. Now I am going to show you how to install visual studio code in your Linux systems.
At first, Importing Microsoft GPG Key. Open your terminal and type following commands...
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
And now we have to enable visual studio core repositories. Then We install code...
sudo nano /etc/yum.repos.d/vscode.repo
You Press this command then open a file. In this file, you should be type this commands. and Press Ctrl+x then write YES.
[code]
name=Visual Studio Code
baseurl=https://packages.microsoft.com/yumrepos/vscode
enabled=1
gpgcheck=1
gpgkey=https://packages.microsoft.com/keys/microsoft.asc
Now write the terminal this code...
sudo yum install code
sudo yum update
Update git version in CentOS
First, Remove the old git...
sudo yum remove git*
Now add centOS IUS repositories and install git...
Finishing all command execute successfully then check your git version...
git --version
Now We install Flutter in our new Linux machine for apps development. At first, We go to Flutter site and downloads Flutter SDK. And Extract this tar.xz file and move the desired directory. To extract and move to the desired directory following terminal commands...
Go to your Downloads directory and typing this ...
tar xf flutter_linux_v1.7.8+hotfix.4-stable.tar.xz
Finishing this process then you get a new flutter folder. Now You should move this following commands...
sudo mv flutter /usr/local/
Now We declare the specific flutter/bin directory address in our system's path. My Systems flutter SDK path is /usr/local/flutter/bin . Now typing following commands your terminals...
sudo gedit ~/.bashrc
When opening a file, then adding following code for declaring the flutter SDK path...
export FLUTTER_HOME=/usr/local/flutter
export PATH="$PATH:$FLUTTER_HOME/bin"
Now finally save the file and run flutter doctor in your terminal for installation testing...
Visual studio code is open source and cross-platform. It's developed by Microsoft. Now I am going to show you how to install visual studio code in your Linux systems.
At first, Importing Microsoft GPG Key. Open your terminal and type following commands...
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
And now we have to enable visual studio core repositories. Then We install code...
sudo nano /etc/yum.repos.d/vscode.repo
You Press this command then open a file. In this file, you should be type this commands. and Press Ctrl+x then write YES.
[code]
name=Visual Studio Code
baseurl=https://packages.microsoft.com/yumrepos/vscode
enabled=1
gpgcheck=1
gpgkey=https://packages.microsoft.com/keys/microsoft.asc
Now write the terminal this code...
sudo yum install code
sudo yum update
Update git version in CentOS
First, Remove the old git...
sudo yum remove git*
Now add centOS IUS repositories and install git...
sudo yum -y install https://centos7.iuscommunity.org/ius-release.rpm
sudo yum -y install git2u-all
Finishing all command execute successfully then check your git version...
git --version
Comments
Post a Comment