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

7 years ago
7 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142
  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 not currently available on Homebrew at the moment.
  9. If you can help package it, please comment on [https://github.com/Keats/gutenberg/issues/12](https://github.com/Keats/gutenberg/issues/12)
  10. if you encounter any issues.
  11. ## Windows
  12. Gutenberg is available on [Scoop](http://scoop.sh):
  13. ```bash
  14. $ scoop install gutenberg
  15. ```
  16. ## Archlinux
  17. Use your favourite AUR helper to install the `gutenberg-bin` package.
  18. ```bash
  19. $ yaourt -S gutenberg-bin
  20. ```
  21. ## From source
  22. To build it from source, you will need to have Git, [Rust and Cargo](https://www.rust-lang.org/)
  23. installed.
  24. From a terminal, you can now run the following command:
  25. ```bash
  26. $ cargo build --release
  27. ```
  28. The binary will be available in the `target/release` folder.