Install Rclone On Local Computer

Windows
Download the latest rclone version.
Extract the compressed zip file to any location of your liking using software like 7zip or WinRAR.
Move rclone.exe to the following folder C:\Windows\System32.

MacOS
Open a terminal window.
Install brew with the command given below:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

Install sudo and macfuse with brew using the commands below:

brew install macfuse
brew install sudo

Switch to root and finally install rclone using the commands below:

sudo su
curl https://rclone.org/install.sh | sudo bash

Linux

Open a terminal window.
Run the command given below:

curl https://rclone.org/install.sh | sudo bash