Install with one line command
curl -sSL https://d.juicefs.com/install | sh -
Manually install
The x86_64 architecture is downloaded by default, if you are using ARM architecture system, please replace the code amd64
to arm64
manually.
1. Get the latest version number
JFS_LATEST_TAG=$(curl -s https://api.github.com/repos/juicedata/juicefs/releases/latest | grep 'tag_name' | cut -d '"' -f 4 | tr -d 'v')
2. Download the client to the current directory
wget "https://d.juicefs.com/juicefs/releases/download/v${JFS_LATEST_TAG}/juicefs-${JFS_LATEST_TAG}-linux-amd64.tar.gz"
3. Unzip the installation package
tar -zxf "juicefs-${JFS_LATEST_TAG}-linux-amd64.tar.gz"
4. Install the client
sudo install juicefs /usr/local/bin
For other versions or for specific architectures, please refer to the documentation for manual compilation.
All releases
Please refer to GitHub Releases.
Homebrew
Note: If you need to mount a file system, please install macFUSE first.
brew install juicefs
For more information about this command, please refer to Homebrew Formulae page.
Install with one line command
If you don't have Homebrew, an one line install can be done with:
curl -sSL https://d.juicefs.com/install | bash -
For other installation methods, please refer to the documentation.
WSL
Recommend using JuiceFS on Windows via WSL 2, please refer to the documentation.
Scoop
PS C:\> scoop install juicefs
For more information about this command, please refer to Scoop.
Manually install
Note: Please install WinFsp first.
- Download and unzip the client juicefs-1.2.1-windows-amd64.tar.gz
- Add or setup
juicefs.exe
to systemPATH
- Using
juicefs.exe
on PowerShell or other terminals
For other installation methods, please refer to the documentation.
Manually install
- Download the latest client juicefs-hadoop-1.2.1.jar
- Place the compiled JAR file and
$JAVA_HOME/lib/tools.jar
into the classpath of the component. - Put JuiceFS configurations into the configuration file of each Hadoop ecosystem component (usually
core-site.xml
).
More information about how to using JuiceFS with Hadoop, please refer to the documentation.