How to download package without installation using apt
Apt provides an option to download package without installation.
#apt install --download-only <PKG>
Where PKG need to be replaced with the name of the package.
The downloaded package file will be available in the folder "/var/cache/apt/archives".
That's all…