Merge pull request #247 from hitrust/patch-7

Fix installing error
This commit is contained in:
Joseph Nix 2018-10-13 16:14:03 -05:00 committed by GitHub
commit 6581d17182
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -44,7 +44,11 @@ Once you have those installed and have made sure that they are on your `PATH`, y
get Lektor installed with our installation script:
```
$ curl -sf https://www.getlektor.com/install.sh | sh
# curl -sf https://www.getlektor.com/install.sh | sh
```
If you are not logged in as superuser, instead you should try this:
```
$ curl -sf https://www.getlektor.com/install.sh | sudo sh
```
If you would like to install Lektor without being prompted, set LEKTOR_SILENT before running the prior command.