Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 480 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 480 Bytes

nlp

NLP research code for writing a paper on dependancy parsing.

Python Setup

Setup Virtualenv if you havn't already

easy_install pip
sudo pip install virtualenv virtualenvwrapper

Add the following to your .bashrcfile

export WORKON_HOME=$HOME/.virtualenvs
export PROJECT_HOME=$HOME/dev
source /usr/local/bin/virtualenvwrapper.sh

then run it source ~/.bashrc to

create a new environment for the NLP project

mkvirtualenv -r requirements.txt nlp