1---
2title: "Rclone downloads"
3description: "Download rclone binaries for your OS."
4type: page
5---
6
7# Downloads
8
9Rclone is single executable (`rclone`, or `rclone.exe` on Windows) that you can
10simply download as a zip archive and extract into a location of your choosing.
11See the [install](https://rclone.org/install/) documentation for more details.
12
13## Release {{< version >}}
14
15| Arch-OS | Windows | macOS | Linux | .deb | .rpm | FreeBSD | NetBSD | OpenBSD | Plan9 | Solaris |
16|:-------:|:-------:|:-----:|:-----:|:----:|:----:|:-------:|:------:|:-------:|:-----:|:-------:|
17| 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 >}} |
18| 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 >}} | - |
19| ARMv6 - 32 Bit | - | - | {{< download linux arm >}} | {{< download linux arm deb >}} | {{< download linux arm rpm >}} | {{< download freebsd arm >}} | {{< download netbsd arm >}} | - | - | - |
20| 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 >}} | - | - | - |
21| ARM - 64 Bit | - | {{< download osx arm64 >}} | {{< download linux arm64 >}} | {{< download linux arm64 deb >}} | {{< download linux arm64 rpm >}} | - | - | - | - | - |
22| MIPS - Big Endian | - | - | {{< download linux mips >}} | {{< download linux mips deb >}} | {{< download linux mips rpm >}} | - | - | - | - | - |
23| MIPS - Little Endian | - | - | {{< download linux mipsle >}} | {{< download linux mipsle deb >}} | {{< download linux mipsle rpm >}} | - | - | - | - | - |
24
25You can also find a [mirror of the downloads on GitHub](https://github.com/rclone/rclone/releases/tag/{{< version >}}).
26
27## Script download and install ##
28
29To install rclone on Linux/macOS/BSD systems, run:
30
31    curl https://rclone.org/install.sh | sudo bash
32
33For beta installation, run:
34
35    curl https://rclone.org/install.sh | sudo bash -s beta
36
37Note that this script checks the version of rclone installed first and
38won't re-download if not needed.
39
40## Beta releases
41
42[Beta releases](https://beta.rclone.org) are generated from each commit
43to master.  Note these are named like
44
45    {Version Tag}.beta.{Commit Number}.{Git Commit Hash}
46
47e.g.
48
49    v1.53.0-beta.4677.b657a2204
50
51The `Version Tag` is the version that the beta release will become
52when it is released. You can match the `Git Commit Hash` up with the
53[git log](https://github.com/rclone/rclone/commits/master).  The most
54recent release will have the largest `Version Tag` and `Commit Number`
55and will normally be at the end of the list.
56
57Some beta releases may have a branch name also:
58
59    {Version Tag}-beta.{Commit Number}.{Git Commit Hash}.{Branch Name}
60
61e.g.
62
63    v1.53.0-beta.4677.b657a2204.semver
64
65The presence of `Branch Name` indicates that this is a feature under
66development which will at some point be merged into the normal betas
67and then into a normal release.
68
69The beta releases haven't been through the [full integration test
70suite](https://pub.rclone.org/integration-tests/) like the releases.
71However it is useful to try the latest beta before reporting an issue.
72
73Note that [rclone.org](https://rclone.org/) is only updated on
74releases - to see the documentation for the latest beta go to
75[tip.rclone.org](https://tip.rclone.org/).
76
77## Downloads for scripting
78
79If you would like to download the current version (maybe from a
80script) from a URL which doesn't change then you can use these links.
81
82| Arch-OS | Windows | macOS | Linux | .deb | .rpm | FreeBSD | NetBSD | OpenBSD | Plan9 | Solaris |
83|:-------:|:-------:|:-----:|:-----:|:----:|:----:|:-------:|:------:|:-------:|:-----:|:-------:|
84| 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 >}} |
85| 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 >}} | - |
86| ARMv6 - 32 Bit | - | - | {{< cdownload linux arm >}} | {{< cdownload linux arm deb >}} | {{< cdownload linux arm rpm >}} | {{< cdownload freebsd arm >}} | {{< cdownload netbsd arm >}} | - | - | - |
87| 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 >}} | - | - | - |
88| ARM - 64 Bit | - | {{< cdownload osx arm64 >}} | {{< cdownload linux arm64 >}} | {{< cdownload linux arm64 deb >}} | {{< cdownload linux arm64 rpm >}} | - | - | - | - | - |
89| MIPS - Big Endian | - | - | {{< cdownload linux mips >}} | {{< cdownload linux mips deb >}} | {{< cdownload linux mips rpm >}} | - | - | - | - | - |
90| MIPS - Little Endian | - | - | {{< cdownload linux mipsle >}} | {{< cdownload linux mipsle deb >}} | {{< cdownload linux mipsle rpm >}} | - | - | - | - | - |
91
92## Older Downloads
93
94Older downloads can be found [here](https://downloads.rclone.org/).
95