We’re here to help you with any and all requests related to: brand, interactive, positioning.
-
Create an environment using venv
$ python -m venv .venv
-
Activate your environment
$ source .venv/bin/activate
-
Run the Python interpreter and type the commands: (pretty sure this is needed for RecursiveCharacterTextSplitter in document_chunker.py)
>>> import nltk >>> nltk.download('punkt')
-
Install the requirements
$ pip install -r requirements.txt
-
Run the app
$ streamlit run streamlit_app.py