Skip to content

Latest commit

 

History

History
31 lines (29 loc) · 829 Bytes

README.md

File metadata and controls

31 lines (29 loc) · 829 Bytes

nlpx

Experiments with NLP

git clone https://github.com/achakravarti/nlpx.git
cd nlpx
virtualenv --python=/usr/bin/python3.6 env
source env/bin/activate
pip install nltk
pip install psycopg2-binary
pip install rake-nltk
pip install gensim
pip install networkx
pip install matplotlib
pip install spacy
python -m spacy download en_core_web_sm
python -m spacy download en_core_web_trf
sudo -i -u postgres
[postgres]$ psql
postgres=# CREATE DATABASE nlpx;
postgres=# CREATE USER nlpx WITH PASSWORD 'your-password';
postgres=# ALTER ROLE nlpx SET client_encoding TO 'utf8';
postgres=# ALTER ROLE nlpx SET default_transaction_isolation TO 'read committed';
postgres=# ALTER ROLE nlpx SET timezone TO 'UTC';
postgres=# GRANT ALL PRIVILEGES ON DATABASE nlpx TO nlpx;
postgres=# CREATE EXTENSION pg_trgm;
postgres=# \q