Skip to content
Snippets Groups Projects
Verified Commit ccdb0470 authored by nfontrod's avatar nfontrod
Browse files

Readme.md: add instructions of dependencies installation

parent f1edbe9d
No related branches found
No related tags found
No related merge requests found
...@@ -40,6 +40,29 @@ You can optionally install [ImageMagick](https://imagemagick.org/script/index.ph ...@@ -40,6 +40,29 @@ You can optionally install [ImageMagick](https://imagemagick.org/script/index.ph
If you want to share your borg folder whith gblk `clone`, `push` and `pull`, `rsync` must be installed on your computer and on remote machines where you want to store/share you results. `ssh` program must be installed to send the archived results to remote servers. If you want to share your borg folder whith gblk `clone`, `push` and `pull`, `rsync` must be installed on your computer and on remote machines where you want to store/share you results. `ssh` program must be installed to send the archived results to remote servers.
Below some commands you can use to install gblk dependencies on ubuntu:
```bash
# Install git
sudo apt install git
# Install borg
sudo apt install borgbackup
# install rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# Install delta (Ubuntu)
wget https://github.com/dandavison/delta/releases/download/0.15.1/git-delta_0.15.1_amd64.deb && \
dpkg -i git-delta_0.15.1_amd64.deb.deb
# Install Imagemagick
sudo apt install imagemagick
# Install Rsync (if not already installed)
sudo apt install rsync
# install gblk
cargo install --git https://gitbio.ens-lyon.fr/LBMC/hub/git_borg_linker
# Update your bashrc
echo "export PATH=$PATH:/home/nicolas/.cargo/bin" > ~/.bashrc
source ~/.bashrc
```
## Installation ## Installation
To install gblk run the following command: To install gblk run the following command:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment