lektor-website/content/downloads/contents.lr

66 lines
1.5 KiB
Plaintext
Raw Permalink Normal View History

2015-12-19 14:52:17 +01:00
_model: page
---
title: Downloads
---
body:
#### banner ####
image: header.jpg
----
height: 300
----
contents:
#### text-block ####
2015-12-19 14:52:17 +01:00
text:
Lektor is an [Open Source Project](../license/) and freely available to
download. It's currently still under heavy development and not all platforms
are equally well supported, although closer to it.
2015-12-19 14:52:17 +01:00
## Command Line Interface
You can install the command line version of
2015-12-21 13:22:49 +01:00
Lektor by copy/pasting a command into your terminal.
!!! Scared about copy/pasting this into a terminal? We now use standard tools
to install lektor. `pipx` is the recommended method to install standalone
command line interface python packages as recommended by [PyPA](https://packaging.python.org/guides/installing-stand-alone-command-line-tools/).
2015-12-27 00:40:14 +01:00
### First Install PipX
2015-12-21 13:22:49 +01:00
Let's first install `pipx`.
2015-12-19 14:52:17 +01:00
__Ubuntu__
2015-12-19 14:52:17 +01:00
```
sudo apt install python3-pip python3-venv
python3 -m pip install --user pipx
python3 -m pipx ensurepath
2015-12-19 14:52:17 +01:00
```
2015-12-21 13:22:49 +01:00
__macOS__
```
brew install pipx
pipx ensurepath
```
2015-12-19 14:52:17 +01:00
__Windows__
2015-12-19 14:52:17 +01:00
```
python -m pip install --user pipx
python -m pipx ensurepath
2015-12-19 14:52:17 +01:00
```
For more information on `pipx` installation go to [pypa.github.io/pipx/installation/](https://pypa.github.io/pipx/installation/)
2020-04-21 21:58:04 +02:00
### Let's install Lektor now
2015-12-19 14:52:17 +01:00
Close and reopen terminal (`Powershell` or `cmd` on Windows), then install `lektor`:
```
pipx install lektor
```
You might need additional dependencies for this installation. For more
information see [Installation](../docs/installation/).
----
class: default