2014-04-24 19:11:08 +02:00
|
|
|
---
|
|
|
|
title: "Rclone downloads"
|
|
|
|
description: "Download rclone binaries for your OS."
|
|
|
|
type: page
|
|
|
|
---
|
|
|
|
|
2021-09-25 21:09:48 +02:00
|
|
|
# Downloads
|
|
|
|
|
|
|
|
Rclone is single executable (`rclone`, or `rclone.exe` on Windows) that you can
|
|
|
|
simply download as a zip archive and extract into a location of your choosing.
|
|
|
|
See the [install](https://rclone.org/install/) documentation for more details.
|
|
|
|
|
2021-11-01 17:50:52 +01:00
|
|
|
## Release {{% version %}} {#release}
|
2014-04-24 19:11:08 +02:00
|
|
|
|
2018-02-26 12:24:56 +01:00
|
|
|
| Arch-OS | Windows | macOS | Linux | .deb | .rpm | FreeBSD | NetBSD | OpenBSD | Plan9 | Solaris |
|
|
|
|
|:-------:|:-------:|:-----:|:-----:|:----:|:----:|:-------:|:------:|:-------:|:-----:|:-------:|
|
2020-02-26 17:39:46 +01:00
|
|
|
| Intel/AMD - 64 Bit | {{< download windows amd64 >}} | {{< download osx amd64 >}} | {{< download linux amd64 >}} | {{< download linux amd64 deb >}} | {{< download linux amd64 rpm >}} | {{< download freebsd amd64 >}} | {{< download netbsd amd64 >}} | {{< download openbsd amd64 >}} | {{< download plan9 amd64 >}} | {{< download solaris amd64 >}} |
|
2020-08-09 13:59:17 +02:00
|
|
|
| Intel/AMD - 32 Bit | {{< download windows 386 >}} | - | {{< download linux 386 >}} | {{< download linux 386 deb >}} | {{< download linux 386 rpm >}} | {{< download freebsd 386 >}} | {{< download netbsd 386 >}} | {{< download openbsd 386 >}} | {{< download plan9 386 >}} | - |
|
2020-06-02 12:27:16 +02:00
|
|
|
| ARMv6 - 32 Bit | - | - | {{< download linux arm >}} | {{< download linux arm deb >}} | {{< download linux arm rpm >}} | {{< download freebsd arm >}} | {{< download netbsd arm >}} | - | - | - |
|
|
|
|
| ARMv7 - 32 Bit | - | - | {{< download linux arm-v7 >}} | {{< download linux arm-v7 deb >}} | {{< download linux arm-v7 rpm >}} | {{< download freebsd arm-v7 >}} | {{< download netbsd arm-v7 >}} | - | - | - |
|
2021-02-05 11:20:19 +01:00
|
|
|
| ARM - 64 Bit | - | {{< download osx arm64 >}} | {{< download linux arm64 >}} | {{< download linux arm64 deb >}} | {{< download linux arm64 rpm >}} | - | - | - | - | - |
|
2018-03-21 21:26:40 +01:00
|
|
|
| MIPS - Big Endian | - | - | {{< download linux mips >}} | {{< download linux mips deb >}} | {{< download linux mips rpm >}} | - | - | - | - | - |
|
|
|
|
| MIPS - Little Endian | - | - | {{< download linux mipsle >}} | {{< download linux mipsle deb >}} | {{< download linux mipsle rpm >}} | - | - | - | - | - |
|
2015-08-28 10:47:13 +02:00
|
|
|
|
2020-05-25 08:15:39 +02:00
|
|
|
You can also find a [mirror of the downloads on GitHub](https://github.com/rclone/rclone/releases/tag/{{< version >}}).
|
2016-11-06 11:17:52 +01:00
|
|
|
|
2018-02-08 15:56:39 +01:00
|
|
|
## Script download and install ##
|
|
|
|
|
|
|
|
To install rclone on Linux/macOS/BSD systems, run:
|
|
|
|
|
|
|
|
curl https://rclone.org/install.sh | sudo bash
|
|
|
|
|
|
|
|
For beta installation, run:
|
|
|
|
|
|
|
|
curl https://rclone.org/install.sh | sudo bash -s beta
|
|
|
|
|
|
|
|
Note that this script checks the version of rclone installed first and
|
|
|
|
won't re-download if not needed.
|
|
|
|
|
2021-09-25 21:09:48 +02:00
|
|
|
## Beta releases
|
2016-10-04 18:10:20 +02:00
|
|
|
|
2017-03-29 11:06:22 +02:00
|
|
|
[Beta releases](https://beta.rclone.org) are generated from each commit
|
2016-10-04 18:10:20 +02:00
|
|
|
to master. Note these are named like
|
|
|
|
|
2020-08-18 22:24:54 +02:00
|
|
|
{Version Tag}.beta.{Commit Number}.{Git Commit Hash}
|
2016-10-04 18:10:20 +02:00
|
|
|
|
2020-10-13 23:49:58 +02:00
|
|
|
e.g.
|
2020-08-18 22:24:54 +02:00
|
|
|
|
|
|
|
v1.53.0-beta.4677.b657a2204
|
|
|
|
|
|
|
|
The `Version Tag` is the version that the beta release will become
|
|
|
|
when it is released. You can match the `Git Commit Hash` up with the
|
|
|
|
[git log](https://github.com/rclone/rclone/commits/master). The most
|
|
|
|
recent release will have the largest `Version Tag` and `Commit Number`
|
|
|
|
and will normally be at the end of the list.
|
2016-10-04 18:10:20 +02:00
|
|
|
|
2018-02-27 11:58:48 +01:00
|
|
|
Some beta releases may have a branch name also:
|
|
|
|
|
2020-08-18 22:24:54 +02:00
|
|
|
{Version Tag}-beta.{Commit Number}.{Git Commit Hash}.{Branch Name}
|
|
|
|
|
2020-10-13 23:49:58 +02:00
|
|
|
e.g.
|
2020-08-18 22:24:54 +02:00
|
|
|
|
|
|
|
v1.53.0-beta.4677.b657a2204.semver
|
2018-02-27 11:58:48 +01:00
|
|
|
|
|
|
|
The presence of `Branch Name` indicates that this is a feature under
|
|
|
|
development which will at some point be merged into the normal betas
|
|
|
|
and then into a normal release.
|
|
|
|
|
|
|
|
The beta releases haven't been through the [full integration test
|
|
|
|
suite](https://pub.rclone.org/integration-tests/) like the releases.
|
|
|
|
However it is useful to try the latest beta before reporting an issue.
|
|
|
|
|
|
|
|
Note that [rclone.org](https://rclone.org/) is only updated on
|
|
|
|
releases - to see the documentation for the latest beta go to
|
|
|
|
[tip.rclone.org](https://tip.rclone.org/).
|
2016-10-04 18:10:20 +02:00
|
|
|
|
2021-09-25 21:09:48 +02:00
|
|
|
## Downloads for scripting
|
2015-08-28 10:47:13 +02:00
|
|
|
|
|
|
|
If you would like to download the current version (maybe from a
|
|
|
|
script) from a URL which doesn't change then you can use these links.
|
|
|
|
|
2018-02-26 12:24:56 +01:00
|
|
|
| Arch-OS | Windows | macOS | Linux | .deb | .rpm | FreeBSD | NetBSD | OpenBSD | Plan9 | Solaris |
|
|
|
|
|:-------:|:-------:|:-----:|:-----:|:----:|:----:|:-------:|:------:|:-------:|:-----:|:-------:|
|
2020-02-26 17:39:46 +01:00
|
|
|
| Intel/AMD - 64 Bit | {{< cdownload windows amd64 >}} | {{< cdownload osx amd64 >}} | {{< cdownload linux amd64 >}} | {{< cdownload linux amd64 deb >}} | {{< cdownload linux amd64 rpm >}} | {{< cdownload freebsd amd64 >}} | {{< cdownload netbsd amd64 >}} | {{< cdownload openbsd amd64 >}} | {{< cdownload plan9 amd64 >}} | {{< cdownload solaris amd64 >}} |
|
2020-08-09 13:59:17 +02:00
|
|
|
| Intel/AMD - 32 Bit | {{< cdownload windows 386 >}} | - | {{< cdownload linux 386 >}} | {{< cdownload linux 386 deb >}} | {{< cdownload linux 386 rpm >}} | {{< cdownload freebsd 386 >}} | {{< cdownload netbsd 386 >}} | {{< cdownload openbsd 386 >}} | {{< cdownload plan9 386 >}} | - |
|
2020-06-02 12:27:16 +02:00
|
|
|
| ARMv6 - 32 Bit | - | - | {{< cdownload linux arm >}} | {{< cdownload linux arm deb >}} | {{< cdownload linux arm rpm >}} | {{< cdownload freebsd arm >}} | {{< cdownload netbsd arm >}} | - | - | - |
|
|
|
|
| ARMv7 - 32 Bit | - | - | {{< cdownload linux arm-v7 >}} | {{< cdownload linux arm-v7 deb >}} | {{< cdownload linux arm-v7 rpm >}} | {{< cdownload freebsd arm-v7 >}} | {{< cdownload netbsd arm-v7 >}} | - | - | - |
|
2021-02-05 11:20:19 +01:00
|
|
|
| ARM - 64 Bit | - | {{< cdownload osx arm64 >}} | {{< cdownload linux arm64 >}} | {{< cdownload linux arm64 deb >}} | {{< cdownload linux arm64 rpm >}} | - | - | - | - | - |
|
2018-03-21 21:26:40 +01:00
|
|
|
| MIPS - Big Endian | - | - | {{< cdownload linux mips >}} | {{< cdownload linux mips deb >}} | {{< cdownload linux mips rpm >}} | - | - | - | - | - |
|
|
|
|
| MIPS - Little Endian | - | - | {{< cdownload linux mipsle >}} | {{< cdownload linux mipsle deb >}} | {{< cdownload linux mipsle rpm >}} | - | - | - | - | - |
|
2015-08-28 10:47:13 +02:00
|
|
|
|
2021-09-25 21:09:48 +02:00
|
|
|
## Older Downloads
|
2014-04-24 19:11:08 +02:00
|
|
|
|
2020-05-25 08:15:39 +02:00
|
|
|
Older downloads can be found [here](https://downloads.rclone.org/).
|