You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

installation.md 980B

7 years ago
7 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. +++
  2. title = "Installation"
  3. weight = 1
  4. +++
  5. Gutenberg provides pre-built binaries for macOS, Linux and Windows on the
  6. [GitHub release page](https://github.com/Keats/gutenberg/releases).
  7. ## macOS
  8. Gutenberg is available on [Brew](https://brew.sh):
  9. ```bash
  10. $ brew install gutenberg
  11. ```
  12. ## Windows
  13. Gutenberg is available on [Scoop](http://scoop.sh):
  14. ```bash
  15. $ scoop install gutenberg
  16. ```
  17. And [Chocolatey](https://chocolatey.org/):
  18. ```bash
  19. $ choco install gutenberg
  20. ```
  21. ## Arch Linux
  22. Use your favourite AUR helper to install the `gutenberg-bin` package.
  23. ```bash
  24. $ yaourt -S gutenberg-bin
  25. ```
  26. ## Void Linux
  27. From the terminal, run the following command:
  28. ```bash
  29. $ xbps-install -S gutenberg
  30. ```
  31. ## From source
  32. To build it from source, you will need to have Git, [Rust and Cargo](https://www.rust-lang.org/)
  33. installed.
  34. From a terminal, you can now run the following command:
  35. ```bash
  36. $ cargo build --release
  37. ```
  38. The binary will be available in the `target/release` folder.