2015-06-06 09:05:21 +00:00
|
|
|
---
|
|
|
|
title: "Install"
|
|
|
|
description: "Rclone Installation"
|
2015-06-14 14:04:39 +00:00
|
|
|
date: "2015-06-12"
|
2015-06-06 09:05:21 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
Install
|
|
|
|
-------
|
|
|
|
|
|
|
|
Rclone is a Go program and comes as a single binary file.
|
|
|
|
|
|
|
|
[Download](/downloads/) the relevant binary.
|
|
|
|
|
|
|
|
Or alternatively if you have Go installed use
|
|
|
|
|
|
|
|
go get github.com/ncw/rclone
|
|
|
|
|
2015-06-14 14:04:39 +00:00
|
|
|
and this will build the binary in `$GOPATH/bin`. If you have built
|
|
|
|
rclone before then you will want to update its dependencies first with
|
|
|
|
this (remove `-f` if using go < 1.4)
|
2015-06-06 09:05:21 +00:00
|
|
|
|
2015-06-14 14:04:39 +00:00
|
|
|
go get -u -v -f github.com/ncw/rclone/...
|
|
|
|
|
|
|
|
See the [Usage section](/docs/) of the docs for how to use rclone, or
|
2015-06-06 09:05:21 +00:00
|
|
|
run `rclone -h`.
|