forked from jacobseunglee/information_retrieval_system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
34 lines (17 loc) · 791 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# information_retrieval_system
# HOW TO USE OUR SEARCH ENGINE
First fork the repository.
WITH GUI:
Open the terminal.
Change directories into the project's directory.
From here create a new virtual environment by using command - python -m venv .venv
Now change directories into ./.venv/Scripts and run command - activate
This should change your terminal line to start with (venv)
pip install <"dependency_name"> or python -m pip install <"dependency_name"> the following:
streamlit, bs4, lxml, nltk
Finally, run the command - streamlit run gui.py - from the projects directory (cd .. until you are back in the project directory)
WITHOUT GUI:
Open the terminal.
Change directories into the project's directory.
Run command - python main.py | python3 main.py
HAPPY SEARCHING!