2015-12-19 14:52:17 +01:00
|
|
|
_model: page
|
|
|
|
---
|
|
|
|
title: Downloads
|
|
|
|
---
|
|
|
|
body:
|
|
|
|
|
|
|
|
#### banner ####
|
|
|
|
image: header.jpg
|
|
|
|
----
|
2015-12-20 17:21:02 +01:00
|
|
|
height: 300
|
|
|
|
----
|
2018-01-11 19:21:43 +01:00
|
|
|
contents:
|
2015-12-20 17:21:02 +01:00
|
|
|
#### text-block ####
|
2015-12-19 14:52:17 +01:00
|
|
|
text:
|
|
|
|
|
|
|
|
Lektor is an [Open Source Project](../license/) and freely available to
|
2016-09-17 21:55:35 +02:00
|
|
|
download. It's currently still under heavy development and not all platforms
|
2022-02-23 23:46:50 +01:00
|
|
|
are equally well supported, although closer to it.
|
2015-12-19 14:52:17 +01:00
|
|
|
|
|
|
|
## Command Line Interface
|
|
|
|
|
2022-02-23 23:46:50 +01:00
|
|
|
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.
|
|
|
|
|
2022-02-23 23:46:50 +01:00
|
|
|
!!! 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
|
|
|
|
2022-02-23 23:46:50 +01:00
|
|
|
### First Install PipX
|
2015-12-21 13:22:49 +01:00
|
|
|
|
2022-02-23 23:46:50 +01:00
|
|
|
Let's first install `pipx`.
|
2015-12-19 14:52:17 +01:00
|
|
|
|
2022-02-23 23:46:50 +01:00
|
|
|
__Ubuntu__
|
2015-12-19 14:52:17 +01:00
|
|
|
```
|
2022-02-23 23:46:50 +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
|
|
|
|
2022-02-23 23:46:50 +01:00
|
|
|
__macOS__
|
2015-12-20 17:21:02 +01:00
|
|
|
```
|
2022-02-23 23:46:50 +01:00
|
|
|
bew install pipx
|
|
|
|
pipx ensurepath
|
2015-12-20 17:21:02 +01:00
|
|
|
```
|
2015-12-19 14:52:17 +01:00
|
|
|
|
2022-02-23 23:46:50 +01:00
|
|
|
__Windows__
|
2015-12-19 14:52:17 +01:00
|
|
|
```
|
2022-02-23 23:46:50 +01:00
|
|
|
python -m pip install --user pipx
|
|
|
|
python -m pipx ensurepath
|
2015-12-19 14:52:17 +01:00
|
|
|
```
|
|
|
|
|
2022-02-23 23:46:50 +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
|
|
|
|
2022-02-23 23:46:50 +01:00
|
|
|
### Let's install Lektor now
|
2015-12-19 14:52:17 +01:00
|
|
|
|
2022-02-23 23:46:50 +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/).
|
2015-12-20 17:21:02 +01:00
|
|
|
----
|
|
|
|
class: default
|