diff options
author | Camil Staps | 2017-10-06 11:55:05 +0200 |
---|---|---|
committer | Camil Staps | 2017-10-06 11:55:05 +0200 |
commit | 931c0a8fe9d1256d022d1ecd3f0f50c92396a364 (patch) | |
tree | 628c0dfa023adf6bf4b17b02d6b36bc8d14f4f81 /Install.md | |
parent | Typo (diff) |
Update installation
Diffstat (limited to 'Install.md')
-rw-r--r-- | Install.md | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -26,12 +26,20 @@ pip install -r requirements.txt If you get encoding errors, you may need to change `python` to `python3` in the scripts in `./scripts`. -After this, the documentation claims that the following should work: +Now we need elasticsearch and build the index: + +```bash +wget -qO- https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/2.3.4/elasticsearch-2.3.4.tar.gz | tar xzv +cd elasticsearch/bin +./elasticsearch +``` + +And in an other shell: ```bash ./scripts/build_dbpedia_index.sh ``` -However, that currently yields connection errors as port 9002 is closed. +However, that currently only adds 97 documents which does not seem reasonable. [Nordlys]: http://nordlys.cc/ |