Browse Source

fix(update-doc): Fix URLs, add sudo, and use generic file name

renovate/lint-staged-8.x
helgabutters 7 years ago
parent
commit
484fdf7de0
  1. 4
      ADVANCED.md
  2. 8
      README.md

4
ADVANCED.md

@ -35,8 +35,8 @@ Zap requires `lnd` but does not store `lnd` binaries in the Github repo.
To setup `lnd` for Zap, you have two options: To setup `lnd` for Zap, you have two options:
- [Light Client](#Light-Client) - [Light Client](#light-client)
- [Full Bitcoin Node](#Full-Bitcoin-Node) - [Full Bitcoin Node](#full-bitcoin-node)
### Light Client ### Light Client

8
README.md

@ -36,13 +36,13 @@ Once you have the .exe file downloaded, simply double click on the file.
Once you have the .deb file downloaded, you will need to install the package with `dpkg`: Once you have the .deb file downloaded, you will need to install the package with `dpkg`:
```bash ```bash
dpkg -i zap-desktop_0.0.1_amd64.deb sudo dpkg -i file.deb
``` ```
If this is your first time installing zap, you may have some unmet dependencies. This can be resolved with the following command: If this is your first time installing zap, you may have some unmet dependencies. This can be resolved with the following command:
```bash ```bash
apt-get update && apt-get -f install sudo apt-get -f install
``` ```
To run Zap you can either navigate through the GUI or run the following command: To run Zap you can either navigate through the GUI or run the following command:
@ -56,13 +56,13 @@ zap-desktop
Once you have downloaded the .AppImage file, you will need to navigate to the download directory and make it executable: Once you have downloaded the .AppImage file, you will need to navigate to the download directory and make it executable:
```bash ```bash
chmod +x zap-desktop_0.0.1_amd64.AppImage chmod +x file.AppImage
``` ```
Then you can simply run the file: Then you can simply run the file:
```bash ```bash
./zap-desktop_0.0.1_amd64.AppImage ./file.AppImage
``` ```
## Advanced Usage ## Advanced Usage

Loading…
Cancel
Save