Refactor bukuserver manual install steps
This commit is contained in:
parent
0f44341945
commit
2a69d5252d
@ -3,8 +3,9 @@
|
||||
### Table of Contents
|
||||
|
||||
- [Installation](#installation)
|
||||
- [Installing dependencies](#installing-dependencies)
|
||||
- [Installing from PyPi](#installing-from-pypi)
|
||||
- [Dependencies](#dependencies)
|
||||
- [From PyPi](#from-pypi)
|
||||
- [From source](#from-source)
|
||||
- [Webserver options](#webserver-options)
|
||||
- [Configuration](#configuration)
|
||||
- [Screenshots](#screenshots)
|
||||
@ -14,22 +15,27 @@
|
||||
You need to have some packages before you install `bukuserver` on your server.
|
||||
So be sure to have `python3`, `python3-pip` , `python3-dev`, `libffi-dev` packages from your distribution.
|
||||
|
||||
#### Installing dependencies
|
||||
#### Dependencies
|
||||
|
||||
```
|
||||
$ python3 -m pip install --user --upgrade pip
|
||||
$ python3 -m pip install --user virtualenv
|
||||
$ python3 -m virtualenv env
|
||||
$ source env/bin/activate
|
||||
```
|
||||
|
||||
#### From PyPi
|
||||
|
||||
$ pip3 install buku[server]
|
||||
|
||||
#### From source
|
||||
|
||||
```
|
||||
$ git clone https://github.com/jarun/Buku
|
||||
$ cd Buku
|
||||
$ pip3 install .[server]
|
||||
```
|
||||
|
||||
#### Installing from PyPi
|
||||
|
||||
$ pip3 install buku[server]
|
||||
|
||||
### Webserver options
|
||||
|
||||
To run the server on host 127.0.0.1, port 5001, run following command:
|
||||
|
Loading…
x
Reference in New Issue
Block a user