diff options
author | neodarz <neodarz@neodarz.net> | 2019-01-13 11:37:07 +0100 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2019-01-13 11:37:07 +0100 |
commit | 7e2e28e1bae4fb59bfa4b7f6c610869a5eb4b894 (patch) | |
tree | 07e2a5ad9401cc6e2d71656a56848c1d9a5e39ca | |
parent | ea8d39f93c1a69d804ffed9b18ab7abc76edadfc (diff) | |
download | khanindexer-7e2e28e1bae4fb59bfa4b7f6c610869a5eb4b894.tar.xz khanindexer-7e2e28e1bae4fb59bfa4b7f6c610869a5eb4b894.zip |
Add some tips to install this project
-rw-r--r-- | README.md | 8 | ||||
-rw-r--r-- | requirements.txt | 2 |
2 files changed, 10 insertions, 0 deletions
@@ -1,5 +1,13 @@ Simple search engine - but you can search nothing for the moment +# Installing + +It is recommended to use [virtualenv](https://virtualenv.pypa.io). + +``` +pip install -r requirements.txt +``` + # Crawling For now there is an example spider with neodarz website. diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..f6df86c --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +Scrapy==1.5.1 +peewee==3.8.1 |