English | 中文 | Swahili(./i18n/README-SW.md)
KabarakNLP is an initiative at Kabarak University dedicated to exploring Natural Language Processing (NLP). We aim to create a vibrant community for those interested in learning about NLP, collaborating on projects, and staying updated on the latest advancements in the field
Download and Install Pyton >= 3.10
-
Clone the repository
git clone https://github.com/kabarakNLP/kabarakNLP.git
-
Go into repository folder
cd kabarakNLP
-
Create virtual environment
python -m venv venv
-
Activate Virtual Environment Ubuntu
source venv/bin/activate
Windows
source venv/lib/activate
-
Install requirementst. In the project root directory, locate the 'requirements.txt' file.
pip install -r requirements.txt
-
Create a '.env' file and add your variables.
EMAIL_HOST=smtp.gmail.com
EMAIL_PORT=587
[email protected]
EMAIL_HOST_PASSWORD=*** sethostpassword ***
EMAIL_USE_TLS=True
-
Makemigrations
python manage.py makemigrations python manage.py migrate
-
Run Server
python manage.py runserver