-
Notifications
You must be signed in to change notification settings - Fork 0
Setup for Development
Aditya Rajput edited this page Nov 7, 2022
·
2 revisions
git clone https://github.com/BURG3R5/matrix-encrypted-search.git
# Or git clone git@github.com:BURG3R5/matrix-encrypted-search.git
cd matrix-encrypted-search
python -m venv .venv # Or, if your system contains both Python 2 and 3, use `python3`
source .venv/bin/activate
python -m venv .venv
.venv\Scripts\activate
pip install -r requirements.txt # Or, if your system contains both Python 2 and 3, use `pip3`
pip install -r requirements-dev.txt # If you want to contribute to the library
pip install -r examples/requirements-examples.txt # If you want to run the examples using matrix-nio
pre-commit install
pre-commit run --all-files
python -m nltk.downloader punkt stopwords
python -m unittest