Browse Source

Update 'README.md'

master
Blink The Things 3 years ago
parent
commit
3b4813336b
1 changed files with 7 additions and 6 deletions
  1. +7
    -6
      README.md

+ 7
- 6
README.md View File

@ -2,18 +2,19 @@
Gernerate a novel using Markov chains
## Install
## Installation
````
```text
$ python3 -m venv venv
$ . venv/bin/activate
(venv) $ pip install -r requirements.txt
(venv) $ python -m spacy download en_core_web_sm
````
```
### Usage
## Usage
````
```text
$ . venv/bin/activate
(venv) $ python markov.py -h
usage: markov.py [-h] [-s SEED] input [input ...]
@ -25,4 +26,4 @@ positional arguments:
optional arguments:
-h, --help show this help message and exit
-s SEED, --seed SEED seed for random number generator
````
```

Loading…
Cancel
Save