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 794B

6 years ago
6 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. ## Mac OS
  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. ## Archlinux
  18. Use your favourite AUR helper to install the `gutenberg-bin` package.
  19. ```bash
  20. $ yaourt -S gutenberg-bin
  21. ```
  22. ## From source
  23. To build it from source, you will need to have Git, [Rust and Cargo](https://www.rust-lang.org/)
  24. installed.
  25. From a terminal, you can now run the following command:
  26. ```bash
  27. $ cargo build --release
  28. ```
  29. The binary will be available in the `target/release` folder.