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="
We can download a full playlist or one video from youtube or other Video streaming site in Linux systems. Now First open your terminal and type following commands for downloading python scripts from Youtube-dl pages. sudo hwget https://yt-dl.org/downloads/latest/youtube-dl -O /usr/local/bin/youtube-dl In this commands First we downloads the dl-scripts then move to the /usr/local/bin directories. Now We have to scripts to encable executables. Now typing following commands... sudo chmod a+rx /usr/local/bin/youtube-dl Now You can update this scripts... sudo youtube-dl -U Finally installing process is finished. Now We have downloading videos following commands ... youtube-dl [url] Example: youtube-dl https://www.youtube.com/watch?v=_-Hs6DdcZyY If you have any question, please leave a comment below...